Obfuscation
Obfuscation Script
Add the obfuscation configuration in the proguard-rules.pro
file under the project directory.
-keepattributes Exceptions,InnerClasses
-keepattributes Signature
-keep class io.rong.** {*;}
-keep class cn.rongcloud.** {*;}
-keep class * implements io.rong.imlib.model.MessageContent {*;}
-dontwarn io.rong.push.**
-dontnote com.xiaomi.**
-dontnote com.google.android.gms.gcm.**
-dontnote io.rong.**
-ignorewarnings
When there is a subclass inheriting from PushMessageReceiver
in the code, keep the created subclass broadcast.
Example:
-keep class io.rong.app.DemoNotificationReceiver {*;}
Replace io.rong.app.DemoNotificationReceiver
with the full class path of the subclass broadcast.