JKBaseLib/app/proguard-rules.pro

29 lines
688 B
Prolog
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 保留 Core-KTX
-keep class androidx.core.** { *; }
# 保留 Kotlin标准库
-keep class kotlin.** { *; }
-keep class org.jetbrains.kotlin.** { *; }
# 保留 友盟统计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.**