You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: app/proguard-rules.pro
+9
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,10 @@
10
10
# ical4j: keep all iCalendar properties/parameters (used via reflection)
11
11
-keep class net.fortuna.ical4j.** { *; }
12
12
13
+
# we are not using those optional features of ical4j
14
+
-dontwarn org.jparsec.** # parser for filter expressions
15
+
-dontwarn javax.cache.** # timezone caching
16
+
13
17
# we use enum classes (https://www.guardsquare.com/en/products/proguard/manual/examples#enumerations)
14
18
-keepclassmembers,allowoptimization enum * {
15
19
public static **[] values();
@@ -27,3 +31,8 @@
27
31
-dontwarn org.joda.**
28
32
-dontwarn org.json.*
29
33
-dontwarn org.xmlpull.**
34
+
35
+
# Seems to be incorrectly detected in https://github.com/ical4j/ical4j/blob/176fc84a4785d6f87be5dd18a20c6f83c6287b35/src/main/java/net/fortuna/ical4j/validate/schema/JsonSchemaValidator.java#L36C1-L36C39
36
+
# Should be fixed eventually by ical4j
37
+
# Commented in https://github.com/ical4j/ical4j/blob/176fc84a4785d6f87be5dd18a20c6f83c6287b35/build.gradle#L76
0 commit comments