2016-08-05 16:58:05 +00:00
|
|
|
# Add project specific ProGuard rules here.
|
|
|
|
# By default, the flags in this file are appended to flags specified
|
|
|
|
# in /Users/topjohnwu/Library/Android/sdk/tools/proguard/proguard-android.txt
|
|
|
|
# You can edit the include path and order by changing the proguardFiles
|
|
|
|
# directive in build.gradle.
|
|
|
|
#
|
|
|
|
# For more details, see
|
|
|
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
|
|
|
|
|
|
# Add any project specific keep options here:
|
|
|
|
|
|
|
|
# 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 *;
|
|
|
|
#}
|
2016-12-11 12:38:15 +00:00
|
|
|
|
2020-02-22 09:28:33 +00:00
|
|
|
# Kotlin
|
|
|
|
-assumenosideeffects class kotlin.jvm.internal.Intrinsics {
|
|
|
|
public static void checkExpressionValueIsNotNull(...);
|
|
|
|
public static void checkNotNullExpressionValue(...);
|
|
|
|
public static void checkReturnedValueIsNotNull(...);
|
|
|
|
public static void checkFieldIsNotNull(...);
|
|
|
|
public static void checkParameterIsNotNull(...);
|
|
|
|
}
|
|
|
|
|
2020-01-27 13:25:35 +00:00
|
|
|
# Stubs
|
|
|
|
-keep class a.* { *; }
|
|
|
|
|
2019-02-01 11:21:55 +00:00
|
|
|
# Snet
|
2020-01-13 14:01:46 +00:00
|
|
|
-keepclassmembers class com.topjohnwu.magisk.core.utils.SafetyNetHelper { *; }
|
|
|
|
-keep,allowobfuscation interface com.topjohnwu.magisk.core.utils.SafetyNetHelper$Callback
|
|
|
|
-keepclassmembers class * implements com.topjohnwu.magisk.core.utils.SafetyNetHelper$Callback {
|
2019-02-01 11:21:55 +00:00
|
|
|
void onResponse(int);
|
|
|
|
}
|
2019-01-30 08:10:12 +00:00
|
|
|
|
2020-01-14 16:51:27 +00:00
|
|
|
# Fragments
|
|
|
|
-keep,allowobfuscation class * extends androidx.fragment.app.Fragment
|
2019-04-19 07:26:33 +00:00
|
|
|
|
2020-01-29 14:16:53 +00:00
|
|
|
# Strip Timber verbose and debug logging
|
|
|
|
-assumenosideeffects class timber.log.Timber.Tree {
|
|
|
|
public void v(**);
|
|
|
|
public void d(**);
|
|
|
|
}
|
2018-09-15 03:00:39 +00:00
|
|
|
|
|
|
|
# Excessive obfuscation
|
2020-02-22 07:40:20 +00:00
|
|
|
-repackageclasses
|
2018-09-15 03:00:39 +00:00
|
|
|
-allowaccessmodification
|
2019-04-11 16:03:22 +00:00
|
|
|
|
|
|
|
# QOL
|
|
|
|
-dontnote **
|
|
|
|
-dontwarn com.caverock.androidsvg.**
|
|
|
|
-dontwarn ru.noties.markwon.**
|