This repository was archived by the owner on Jun 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed
Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 11[versions ]
2- agp = " 8.7.3 "
2+ agp = " 8.9.1 "
33android-desugar = " 2.1.5"
44androidx-core = " 1.16.0"
55androidx-test-rules = " 1.6.1"
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ android {
2424 aarMetadata {
2525 minCompileSdk = 29
2626 }
27+
28+ // These ProGuard/R8 rules will be included in the final APK.
29+ consumerProguardFiles(" consumer-rules.pro" )
2730 }
2831
2932 compileOptions {
@@ -51,6 +54,15 @@ android {
5154 }
5255 }
5356
57+ buildTypes {
58+ release {
59+ // Android libraries shouldn't be minified:
60+ // https://developer.android.com/studio/projects/android-library#Considerations
61+ isMinifyEnabled = false
62+ proguardFiles(getDefaultProguardFile(" proguard-android-optimize.txt" ))
63+ }
64+ }
65+
5466 lint {
5567 disable + = listOf (" AllowBackup" , " InvalidPackage" )
5668 }
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 groovy.**
8+ -dontwarn java.beans.Transient
9+ -dontwarn javax.cache.**
10+ -dontwarn org.codehaus.groovy.**
11+ -dontwarn org.jparsec.**
You can’t perform that action at this time.
0 commit comments