2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-11 13:11:01 +00:00

Closes #3914: Exclude gecko.util.DebugConfig from Proguard optimization

This commit is contained in:
Christian Sadilek 2019-07-05 15:49:10 -04:00 committed by Emily Kager
parent 003837eb4f
commit 1169822479

View File

@ -26,6 +26,11 @@
-dontwarn com.google.** -dontwarn com.google.**
-dontwarn org.mozilla.geckoview.** -dontwarn org.mozilla.geckoview.**
# Raptor now writes a *-config.yaml file to specify Gecko runtime settings (e.g. the profile dir). This
# file gets deserialized into a DebugConfig object, which is why we need to keep this class
# and its members.
-keep class org.mozilla.gecko.util.DebugConfig { *; }
#################################################################################################### ####################################################################################################
# Kotlinx # Kotlinx
#################################################################################################### ####################################################################################################