-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproguard-rules.pro
More file actions
45 lines (38 loc) · 1.53 KB
/
proguard-rules.pro
File metadata and controls
45 lines (38 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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
-dontobfuscate
-allowaccessmodification
-dontskipnonpubliclibraryclasses
-dontskipnonpubliclibraryclassmembers
-keepattributes SourceFile, LineNumberTable, Exception, *Annotation*, InnerClasses, EnclosingMethod, Signature
-keep,allowoptimization class de.binarynoise.** {
public static void main(***);
}
-keepclassmembers,allowoptimization class ** extends androidx.viewbinding.ViewBinding {
public static ** inflate(android.view.LayoutInflater);
public static ** bind(android.view.View);
}
-keep,allowoptimization class ** implements de.robv.android.xposed.IXposedHookLoadPackage
-keep,allowoptimization class ** implements de.robv.android.xposed.IXposedHookInitPackageResources
-keep,allowoptimization class ** implements de.robv.android.xposed.IXposedHookZygoteInit
#noinspection ShrinkerUnresolvedReference
-assumenosideeffects class android.util.Log {
public static boolean isLoggable(java.lang.String, int);
public static int d(...);
public static int v(...);
public static int i(...);
public static int w(...);
public static int e(...);
public static int wtf(...);
public static int println(...);
}
-dontwarn java.beans.**
-dontwarn java.lang.**
-dontwarn com.google.android.gms.**
-dontwarn com.google.re2j.**
-dontwarn org.checkerframework.checker.**
-dontwarn j$.**