react-native-proguard-auto 1.0.2 → 1.0.4

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.
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-proguard-auto",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Automatically generate ProGuard rules for React Native native modules",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,8 @@
8
8
  },
9
9
  "files": [
10
10
  "bin",
11
- "dist"
11
+ "dist",
12
+ "images"
12
13
  ],
13
14
  "devDependencies": {
14
15
  "javascript-obfuscator": "^5.3.0"
package/readme.md CHANGED
@@ -48,7 +48,7 @@ The tool will analyze your project dependencies and generate **recommended ProGu
48
48
 
49
49
  Without proper ProGuard rules, release builds may fail or crash due to missing classes during code shrinking.
50
50
 
51
- ![Without Proguard Rules](./images/before-proguard.png)
51
+ ![Without Proguard Rules](/images/before-proguard.png)
52
52
 
53
53
  ---
54
54
 
@@ -56,7 +56,7 @@ Without proper ProGuard rules, release builds may fail or crash due to missing c
56
56
 
57
57
  The tool automatically generates the required ProGuard rules to help ensure stable release builds.
58
58
 
59
- ![After Using react-native-proguard-auto](./images/after-proguard.png)
59
+ ![After Using react-native-proguard-auto](/images/after-proguard.png)
60
60
 
61
61
 
62
62
  ---