94 lines
2.8 KiB
Prolog
94 lines
2.8 KiB
Prolog
#start topon 聚合混淆
|
|
# Vungle
|
|
-dontwarn com.vungle.ads.**
|
|
-keepclassmembers class com.vungle.ads.** {
|
|
*;
|
|
}
|
|
-keep class com.vungle.ads.**
|
|
|
|
|
|
|
|
# Google
|
|
-keep class com.google.android.gms.** { *; }
|
|
-dontwarn com.google.android.gms.**
|
|
|
|
|
|
|
|
|
|
# START OkHttp + Okio
|
|
# JSR 305 annotations are for embedding nullability information.
|
|
-dontwarn javax.annotation.**
|
|
|
|
|
|
# A resource is loaded with a relative path so the package of this class must be preserved.
|
|
-adaptresourcefilenames okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz
|
|
|
|
|
|
# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.*
|
|
|
|
|
|
# OkHttp platform used only on JVM and when Conscrypt and other security providers are available.
|
|
-dontwarn okhttp3.internal.platform.**
|
|
-dontwarn org.conscrypt.**
|
|
-dontwarn org.bouncycastle.**
|
|
-dontwarn org.openjsse.**
|
|
|
|
|
|
# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.*
|
|
|
|
|
|
# END OkHttp + Okio
|
|
|
|
|
|
# START Protobuf
|
|
-dontwarn com.google.protobuf.**
|
|
-keepclassmembers class com.google.protobuf.** {
|
|
*;
|
|
}
|
|
-keep class * extends com.google.protobuf.GeneratedMessageLite { *; }
|
|
|
|
|
|
# END Protobuf
|
|
-keepclassmembers class com.ironsource.sdk.controller.IronSourceWebView$JSInterface {
|
|
public *;
|
|
}
|
|
-keepclassmembers class * implements android.os.Parcelable {
|
|
public static final android.os.Parcelable$Creator *;
|
|
}
|
|
-keep public class com.google.android.gms.ads.** {
|
|
public *;
|
|
}
|
|
-keep class com.ironsource.adapters.** { *;
|
|
}
|
|
-dontwarn com.ironsource.mediationsdk.**
|
|
-dontwarn com.ironsource.adapters.**
|
|
-keepattributes JavascriptInterface
|
|
-keepclassmembers class * {
|
|
@android.webkit.JavascriptInterface <methods>;
|
|
}
|
|
-keepattributes Signature
|
|
-keepattributes *Annotation*
|
|
-keep class com.mbridge.** {*; }
|
|
-keep interface com.mbridge.** {*; }
|
|
-dontwarn com.mbridge.**
|
|
-keepclassmembers class **.R$* { public static final int mbridge*; }
|
|
|
|
-keep public class com.mbridge.* extends androidx.** { *; }
|
|
-keep public class androidx.viewpager.widget.PagerAdapter{*;}
|
|
-keep public class androidx.viewpager.widget.ViewPager.OnPageChangeListener{*;}
|
|
-keep interface androidx.annotation.IntDef{*;}
|
|
-keep interface androidx.annotation.Nullable{*;}
|
|
-keep interface androidx.annotation.CheckResult{*;}
|
|
-keep interface androidx.annotation.NonNull{*;}
|
|
-keep public class androidx.fragment.app.Fragment{*;}
|
|
-keep public class androidx.core.content.FileProvider{*;}
|
|
-keep public class androidx.core.app.NotificationCompat{*;}
|
|
-keep public class androidx.appcompat.widget.AppCompatImageView {*;}
|
|
-keep public class androidx.recyclerview.*{*;}
|
|
-keep class com.mbridge.msdk.foundation.tools.FastKV{*;}
|
|
-keep class com.mbridge.msdk.foundation.tools.FastKV$Builder{*;}
|
|
-keep class com.bytedance.sdk.** { *; }
|
|
#end topon 聚合混淆
|