diff --git a/app-dialog/proguard-rules.pro b/app-dialog/proguard-rules.pro index f1b4245..b844602 100644 --- a/app-dialog/proguard-rules.pro +++ b/app-dialog/proguard-rules.pro @@ -19,3 +19,11 @@ # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile + +-dontwarn com.king.app.dialog.** +-keep class com.king.app.dialog.**{ *;} + +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} diff --git a/app-updater/proguard-rules.pro b/app-updater/proguard-rules.pro index f1b4245..aead99e 100644 --- a/app-updater/proguard-rules.pro +++ b/app-updater/proguard-rules.pro @@ -19,3 +19,13 @@ # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile + +-dontwarn com.king.app.updater.** +-keep class com.king.app.updater.**{ *;} +-keep class * extends com.king.app.updater.**{ *;} +-keep class * implements com.king.app.updater.**{ *;} +-keepattributes InnerClasses + +-keep class * implements android.os.Parcelable { + public static final android.os.Parcelable$Creator *; +}