mirror of
https://github.com/pppscn/SmsForwarder
synced 2024-11-19 15:25:45 +00:00
77 lines
2.1 KiB
Prolog
77 lines
2.1 KiB
Prolog
# 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
|
|
|
|
-keep class com.idormy.**{*;}
|
|
|
|
#emailkit
|
|
-dontwarn com.sun.**
|
|
-dontwarn javax.mail.**
|
|
-dontwarn javax.activation.**
|
|
-keep class com.sun.** { *;}
|
|
-keep class javax.mail.** { *;}
|
|
-keep class javax.activation.** { *;}
|
|
-keep class com.smailnet.emailkit.** { *;}
|
|
|
|
#xupdate
|
|
-keep class com.xuexiang.xupdate.entity.** { *; }
|
|
-dontwarn com.arialyy.aria.**
|
|
-keep class com.arialyy.aria.**{*;}
|
|
-keep class **$$DownloadListenerProxy{ *; }
|
|
-keep class **$$UploadListenerProxy{ *; }
|
|
-keep class **$$DownloadGroupListenerProxy{ *; }
|
|
-keep class **$$DGSubListenerProxy{ *; }
|
|
-keepclasseswithmembernames class * {
|
|
@Download.* <methods>;
|
|
@Upload.* <methods>;
|
|
@DownloadGroup.* <methods>;
|
|
}
|
|
|
|
#友盟统计SDK
|
|
-dontwarn com.umeng.**
|
|
-dontwarn com.taobao.**
|
|
-dontwarn anet.channel.**
|
|
-dontwarn anetwork.channel.**
|
|
-dontwarn org.android.**
|
|
-dontwarn org.apache.thrift.**
|
|
-dontwarn com.xiaomi.**
|
|
-dontwarn com.huawei.**
|
|
-dontwarn com.meizu.**
|
|
|
|
-keepattributes *Annotation*
|
|
|
|
-keep class com.taobao.** {*;}
|
|
-keep class org.android.** {*;}
|
|
-keep class anet.channel.** {*;}
|
|
-keep class com.umeng.** {*;}
|
|
-keep class com.xiaomi.** {*;}
|
|
-keep class com.huawei.** {*;}
|
|
-keep class com.meizu.** {*;}
|
|
-keep class org.apache.thrift.** {*;}
|
|
|
|
-keep class com.alibaba.sdk.android.** {*;}
|
|
-keep class com.ut.** {*;}
|
|
-keep class com.uc.** {*;}
|
|
-keep class com.ta.** {*;}
|
|
|
|
-keep public class **.R$* {
|
|
public static final int *;
|
|
} |