Magisk/app/proguard-rules.pro

49 lines
1.4 KiB
Prolog
Raw Normal View History

2016-08-05 18:58:05 +02: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 13:38:15 +01:00
2020-02-22 10:28:33 +01:00
# Kotlin
-assumenosideeffects class kotlin.jvm.internal.Intrinsics {
2021-01-24 14:21:22 +01:00
public static void check*(...);
public static void throw*(...);
2020-02-22 10:28:33 +01:00
}
# Stubs
-keep class a.* { *; }
2019-02-01 12:21:55 +01:00
# Snet
-keepclassmembers class com.topjohnwu.magisk.ui.safetynet.SafetyNetHelper { *; }
-keep,allowobfuscation interface com.topjohnwu.magisk.ui.safetynet.SafetyNetHelper$Callback
-keepclassmembers class * implements com.topjohnwu.magisk.ui.safetynet.SafetyNetHelper$Callback {
2020-08-24 00:03:14 +02:00
void onResponse(org.json.JSONObject);
2019-02-01 12:21:55 +01:00
}
2019-01-30 09:10:12 +01:00
2020-01-29 15:16:53 +01:00
# Strip Timber verbose and debug logging
-assumenosideeffects class timber.log.Timber.Tree {
public void v(**);
public void d(**);
}
# Excessive obfuscation
2020-02-22 08:40:20 +01:00
-repackageclasses
-allowaccessmodification
# QOL
-dontnote **
-dontwarn com.caverock.androidsvg.**
-dontwarn ru.noties.markwon.**