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
|
|
|
|
2019-02-01 12:21:55 +01:00
|
|
|
# Snet
|
2019-08-08 09:59:23 +02:00
|
|
|
-keepclassmembers class com.topjohnwu.magisk.utils.SafetyNetHelper { *; }
|
|
|
|
-keep,allowobfuscation interface com.topjohnwu.magisk.utils.SafetyNetHelper$Callback
|
|
|
|
-keepclassmembers class * implements com.topjohnwu.magisk.utils.SafetyNetHelper$Callback {
|
2019-02-01 12:21:55 +01:00
|
|
|
void onResponse(int);
|
|
|
|
}
|
2019-01-30 09:10:12 +01:00
|
|
|
|
2019-04-19 09:26:33 +02:00
|
|
|
# Keep all fragment constructors
|
|
|
|
-keepclassmembers class * extends androidx.fragment.app.Fragment {
|
|
|
|
public <init>(...);
|
|
|
|
}
|
|
|
|
|
2019-04-02 22:32:40 +02:00
|
|
|
# DelegateWorker
|
2019-09-28 09:37:24 +02:00
|
|
|
-keep,allowobfuscation class * extends com.topjohnwu.magisk.base.DelegateWorker
|
2019-04-02 22:32:40 +02:00
|
|
|
|
2019-01-30 09:10:12 +01:00
|
|
|
# BootSigner
|
2019-10-17 10:47:46 +02:00
|
|
|
-keep class a.a { *; }
|
2018-12-02 10:47:57 +01:00
|
|
|
|
2019-10-19 11:44:56 +02:00
|
|
|
# Workaround R8 bug
|
|
|
|
-keep,allowobfuscation class com.topjohnwu.magisk.model.receiver.GeneralReceiver
|
|
|
|
|
2018-07-27 15:52:09 +02:00
|
|
|
# Strip logging
|
2019-05-24 15:49:11 +02:00
|
|
|
-assumenosideeffects class timber.log.Timber.Tree { *; }
|
2018-09-15 05:00:39 +02:00
|
|
|
|
|
|
|
# Excessive obfuscation
|
|
|
|
-repackageclasses 'a'
|
|
|
|
-allowaccessmodification
|
2019-04-11 18:03:22 +02:00
|
|
|
|
|
|
|
# QOL
|
|
|
|
-dontnote **
|
|
|
|
-dontwarn com.caverock.androidsvg.**
|
|
|
|
-dontwarn ru.noties.markwon.**
|