1
0
Fork 0

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

master
Christian Sadilek 2019-07-05 15:49:10 -04:00 committed by Emily Kager
parent 003837eb4f
commit 1169822479
1 changed files with 5 additions and 0 deletions

View File

@ -26,6 +26,11 @@
-dontwarn com.google.**
-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
####################################################################################################