File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ android {
35
35
}
36
36
debug {
37
37
debuggable true
38
+ minifyEnabled true
39
+ proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules-debug.pro'
38
40
versionNameSuffix " -beta"
39
41
}
40
42
}
@@ -106,7 +108,7 @@ dependencies {
106
108
implementation " androidx.appcompat:appcompat:1.0.2"
107
109
implementation ' androidx.constraintlayout:constraintlayout:1.1.3'
108
110
implementation " androidx.browser:browser:1.0.0"
109
- implementation " com.google.android.material:material:1.1.0-alpha01 "
111
+ implementation " com.google.android.material:material:1.1.0-alpha02 "
110
112
implementation " androidx.gridlayout:gridlayout:1.0.0"
111
113
implementation " androidx.recyclerview:recyclerview:1.1.0-alpha01"
112
114
/* includes all other support-v4 libraries */
Original file line number Diff line number Diff line change
1
+ -dontobfuscate
2
+
3
+ -keepclassmembers class ** {
4
+ void <init>(android.content.Context);
5
+ }
6
+
7
+ -assumevalues class android.os.Build$VERSION {
8
+ int SDK_INT return 21..2147483647;
9
+ }
Original file line number Diff line number Diff line change 1
1
-dontwarn **
2
2
3
+ -keepclassmembers class ** {
4
+ void <init>(android.content.Context);
5
+ }
6
+
3
7
-keep class de.Maxr1998.xposed.maxlock.hooks.** {*;}
4
8
5
9
-keep class de.Maxr1998.xposed.maxlock.ui.actions.ActionsHelper {
15
19
private int mSuccessColor;
16
20
}
17
21
18
- -keep class android.support.v7.widget.SearchView { *; }
19
-
20
- -assumenosideeffects class kotlin.jvm.internal.Intrinsics {
21
- static void checkParameterIsNotNull(java.lang.Object, java.lang.String);
22
+ -assumevalues class android.os.Build$VERSION {
23
+ int SDK_INT return 21..2147483647;
22
24
}
You can’t perform that action at this time.
0 commit comments