rn-linkrunner 2.5.0 → 2.5.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.
@@ -108,7 +108,6 @@ repositories {
108
108
  }
109
109
  google()
110
110
  mavenCentral()
111
- jcenter()
112
111
  maven { url 'https://www.jitpack.io' }
113
112
  }
114
113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-linkrunner",
3
- "version": "2.5.0",
3
+ "version": "2.5.2",
4
4
  "description": "React Native Package for linkrunner",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -1,55 +0,0 @@
1
- # Keep all classes in the io.linkrunner package
2
- -keep class io.linkrunner.** { *; }
3
-
4
- # Keep all interfaces in the io.linkrunner package
5
- -keep interface io.linkrunner.** { *; }
6
-
7
- # Keep all enums in the io.linkrunner package
8
- -keep enum io.linkrunner.** { *; }
9
-
10
- # Keep all annotations in the io.linkrunner package
11
- -keep @interface io.linkrunner.** { *; }
12
-
13
- # Keep all public and protected methods and fields
14
- -keepclassmembers class io.linkrunner.** {
15
- public *;
16
- protected *;
17
- }
18
-
19
- # Keep all native methods
20
- -keepclasseswithmembernames class * {
21
- native <methods>;
22
- }
23
-
24
- # Keep all React Native module methods (those with @ReactMethod annotation)
25
- -keepclassmembers class * {
26
- @com.facebook.react.bridge.ReactMethod *;
27
- }
28
-
29
- # Keep all Parcelable implementations
30
- -keep class * implements android.os.Parcelable {
31
- public static final android.os.Parcelable$Creator *;
32
- }
33
-
34
- # Keep all Serializable implementations
35
- -keep class * implements java.io.Serializable {
36
- private static final java.io.ObjectStreamField[] serialPersistentFields;
37
- private void writeObject(java.io.ObjectOutputStream);
38
- private void readObject(java.io.ObjectInputStream);
39
- java.lang.Object writeReplace();
40
- java.lang.Object readResolve();
41
- }
42
-
43
- # Keep R8 rules for SDK consumers
44
- -keep class io.linkrunner.R$* {
45
- public static <fields>;
46
- }
47
-
48
- # Keep BuildConfig
49
- -keep class io.linkrunner.BuildConfig { *; }
50
-
51
- # Keep all model classes
52
- -keep class io.linkrunner.sdk.models.** { *; }
53
-
54
- # Keep all utils classes
55
- -keep class io.linkrunner.utils.** { *; }