@primer-io/react-native 0.15.1 → 0.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +4 -0
- package/android/consumer-rules.pro +12 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
-dontnote kotlinx.serialization.AnnotationsKt # core serialization annotations
|
|
2
|
+
|
|
3
|
+
-keepclassmembers class kotlinx.serialization.json.** {
|
|
4
|
+
*** Companion;
|
|
5
|
+
}
|
|
6
|
+
-keepclasseswithmembers class kotlinx.serialization.json.** {
|
|
7
|
+
kotlinx.serialization.KSerializer serializer(...);
|
|
8
|
+
}
|
|
9
|
+
-keep,includedescriptorclasses class com.primerioreactnative.**$$serializer { *; }
|
|
10
|
+
-keepclasseswithmembers class com.primerioreactnative.** {
|
|
11
|
+
kotlinx.serialization.KSerializer serializer(...);
|
|
12
|
+
}
|