# Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} # Uncomment this to preserve the line number information for # debugging stack traces. #-keepattributes SourceFile,LineNumberTable # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile # OpenIM SDK ProGuard rules -keep class io.openim.android.sdk.** { *; } -keep class io.openim.core.** { *; } -keepclassmembers class io.openim.android.sdk.** { *; } -keepclassmembers class io.openim.core.** { *; } # Keep OpenIM models and listeners -keep class io.openim.android.sdk.models.** { *; } -keep class io.openim.android.sdk.listener.** { *; } -keep class io.openim.android.sdk.enums.** { *; } # Keep OpenIM Client and managers -keep class io.openim.android.sdk.OpenIMClient { *; } -keep class io.openim.android.sdk.manager.** { *; } # Prevent obfuscation of callback methods -keepclassmembers class * implements io.openim.android.sdk.listener.** { public *; }