22 lines
535 B
Prolog
22 lines
535 B
Prolog
# 保留 友盟统计SDK
|
||
-keep class com.umeng.** { *; }
|
||
-dontwarn com.umeng.**
|
||
# 保留 RxJava/RxAndroid
|
||
-keep class rx.** { *; }
|
||
-dontwarn rx.**
|
||
|
||
|
||
# 保留GreenDao
|
||
-keepclassmembers class * extends org.greenrobot.greendao.AbstractDao {
|
||
public static java.lang.String TABLENAME;
|
||
}
|
||
-keep class **$Properties { *; }
|
||
|
||
# If you DO use SQLCipher:
|
||
-keep class org.greenrobot.greendao.database.SqlCipherEncryptedHelper { *; }
|
||
|
||
# If you do NOT use SQLCipher:
|
||
-dontwarn net.sqlcipher.database.**
|
||
# If you do NOT use RxJava:
|
||
-dontwarn rx.**
|