Skip to content

Commit c68aef7

Browse files
authored
Ignored warnings for unused classes (#383)
Signed-off-by: Arnau Mora Gras <[email protected]>
1 parent f92153c commit c68aef7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

app/proguard-rules.pro

+9
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
# ical4j: keep all iCalendar properties/parameters (used via reflection)
1111
-keep class net.fortuna.ical4j.** { *; }
1212

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+
1317
# we use enum classes (https://www.guardsquare.com/en/products/proguard/manual/examples#enumerations)
1418
-keepclassmembers,allowoptimization enum * {
1519
public static **[] values();
@@ -27,3 +31,8 @@
2731
-dontwarn org.joda.**
2832
-dontwarn org.json.*
2933
-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
38+
-dontwarn com.github.erosb.jsonsKema.*

0 commit comments

Comments
 (0)