diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 9b013d01c3..521d5c8a19 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -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 ####################################################################################################