WIP
This commit is contained in:
parent
ea6c2226cb
commit
213c13def5
|
@ -57,12 +57,12 @@ android {
|
|||
|
||||
compileOptions {
|
||||
coreLibraryDesugaringEnabled true
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
jvmTarget = "11"
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
|
|
|
@ -12,4 +12,8 @@
|
|||
-keepclassmembers interface * extends android.os.IInterface {
|
||||
public static class *;
|
||||
}
|
||||
-keep public class * extends android.os.Binder { public static *; }
|
||||
-keep public class * extends android.os.Binder { public static *; }
|
||||
|
||||
# Keep rules to prevent R8 from removing necessary classes
|
||||
-dontwarn com.google.j2objc.annotations.RetainedWith
|
||||
-keep class com.google.j2objc.annotations.RetainedWith { *; }
|
|
@ -12,4 +12,8 @@
|
|||
-keepclassmembers interface * extends android.os.IInterface {
|
||||
public static class *;
|
||||
}
|
||||
-keep public class * extends android.os.Binder { public static *; }
|
||||
-keep public class * extends android.os.Binder { public static *; }
|
||||
|
||||
# Keep rules to prevent R8 from removing necessary classes
|
||||
-dontwarn com.google.j2objc.annotations.RetainedWith
|
||||
-keep class com.google.j2objc.annotations.RetainedWith { *; }
|
Loading…
Reference in New Issue