File tree 5 files changed +25
-6
lines changed
5 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ android {
33
33
34
34
buildTypes {
35
35
release {
36
- isMinifyEnabled = false
36
+ isMinifyEnabled = true
37
37
proguardFiles(
38
38
getDefaultProguardFile(" proguard-android-optimize.txt" ),
39
39
" proguard-rules.pro"
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ androidxBrowserVersion=1.5.0
18
18
dokkaVersion =1.8.10
19
19
20
20
sdkVersion =1.6.0
21
- exampleAsMavenLocal =false
21
+ exampleAsMavenLocal =false
Original file line number Diff line number Diff line change 1
- # Wed Jan 05 11:34:33 CET 2022
2
1
distributionBase =GRADLE_USER_HOME
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
4
2
distributionPath =wrapper/dists
5
- zipStorePath = wrapper/dists
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
6
4
zipStoreBase =GRADLE_USER_HOME
5
+ zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ android {
15
15
minSdk = 21
16
16
17
17
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
18
+ consumerProguardFile(" proguard-rules.pro" )
18
19
}
19
20
20
21
buildTypes {
Original file line number Diff line number Diff line change 18
18
19
19
# If you keep the line number information, uncomment this to
20
20
# hide the original source file name.
21
- #-renamesourcefileattribute SourceFile
21
+ #-renamesourcefileattribute SourceFile
22
+
23
+ -keepattributes *Annotation*, InnerClasses
24
+ -dontnote kotlinx.serialization.AnnotationsKt # core serialization annotations
25
+
26
+ # kotlinx-serialization-json specific. Add this if you have java.lang.NoClassDefFoundError kotlinx.serialization.json.JsonObjectSerializer
27
+ -keepclassmembers class kotlinx.serialization.json.** {
28
+ *** Companion;
29
+ }
30
+ -keepclasseswithmembers class kotlinx.serialization.json.** {
31
+ kotlinx.serialization.KSerializer serializer(...);
32
+ }
33
+
34
+ -keep,includedescriptorclasses class com.jedlix.sdk.**$$serializer { *; }
35
+ -keepclassmembers class com.jedlix.sdk.** {
36
+ *** Companion;
37
+ }
38
+ -keepclasseswithmembers class com.jedlix.sdk.** {
39
+ kotlinx.serialization.KSerializer serializer(...);
40
+ }
You can’t perform that action at this time.
0 commit comments