File tree 3 files changed +17
-1
lines changed
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
[versions ]
2
- agp = " 8.7.3 "
2
+ agp = " 8.9.1 "
3
3
android-desugar = " 2.1.5"
4
4
androidx-core = " 1.16.0"
5
5
androidx-test-rules = " 1.6.1"
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ android {
24
24
aarMetadata {
25
25
minCompileSdk = 29
26
26
}
27
+ consumerProguardFiles(" consomer-rules.pro" )
27
28
}
28
29
29
30
compileOptions {
@@ -51,6 +52,13 @@ android {
51
52
}
52
53
}
53
54
55
+ buildTypes {
56
+ release {
57
+ isMinifyEnabled = false
58
+ proguardFiles(getDefaultProguardFile(" proguard-android-optimize.txt" ))
59
+ }
60
+ }
61
+
54
62
lint {
55
63
disable + = listOf (" AllowBackup" , " InvalidPackage" )
56
64
}
Original file line number Diff line number Diff line change
1
+
2
+ # keep all iCalendar properties/parameters (used via reflection)
3
+ -keep class net.fortuna.ical4j.** { *; }
4
+
5
+ # don't warn when these are missing
6
+ -dontwarn com.github.erosb.jsonsKema.**
7
+ #-dontwarn javax.cache.**
8
+ #-dontwarn org.jparsec.**
You can’t perform that action at this time.
0 commit comments