File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
core/jvm/resources/META-INF/proguard Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change
1
+ # We depend on kotlinx-serialization as compileOnly.
2
+ # If the serializers don't get used, the library works properly even without the
3
+ # kotlinx-serialization dependency, but Proguard emits warnings about datetime
4
+ # classes mentioning some serialization-related entities.
5
+ # These rules should not cause problems: if a project actually relies on
6
+ # serialization, then much more than just these two classes will be required,
7
+ # so telling Proguard not to worry if these two are missing will not prevent it
8
+ # from emitting errors for code that does use serialization but somehow forgot
9
+ # to depend on it.
10
+ -dontwarn kotlinx.serialization.KSerializer
11
+ -dontwarn kotlinx.serialization.Serializable
You can’t perform that action at this time.
0 commit comments