@appzung/react-native-code-push 11.0.0-rc7 → 11.0.0-rc8
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/app/proguard-rules.pro +5 -0
- package/lib/commonjs/internals/version.js +1 -1
- package/lib/module/internals/version.js +1 -1
- package/lib/typescript/commonjs/src/internals/version.d.ts +1 -1
- package/lib/typescript/module/src/internals/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/internals/version.ts +1 -1
|
@@ -20,6 +20,11 @@
|
|
|
20
20
|
-keepclassmembers class com.facebook.react.ReactInstanceManager {
|
|
21
21
|
private final ** mBundleLoader;
|
|
22
22
|
}
|
|
23
|
+
-keepclassmembers class com.facebook.react.runtime.ReactHostImpl {
|
|
24
|
+
private final ** mReactHostDelegate;
|
|
25
|
+
}
|
|
26
|
+
-keep interface com.facebook.react.runtime.ReactHostDelegate { *; }
|
|
27
|
+
-keep class * implements com.facebook.react.runtime.ReactHostDelegate { *; }
|
|
23
28
|
|
|
24
29
|
# Can't find referenced class org.bouncycastle.**
|
|
25
30
|
-dontwarn com.nimbusds.jose.**
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "11.0.0-
|
|
1
|
+
export declare const version = "11.0.0-rc8";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "11.0.0-
|
|
1
|
+
export declare const version = "11.0.0-rc8";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appzung/react-native-code-push",
|
|
3
|
-
"version": "11.0.0-
|
|
3
|
+
"version": "11.0.0-rc8",
|
|
4
4
|
"description": "React Native plugin for the CodePush service",
|
|
5
5
|
"author": "Louis Lagrange <lagrange.louis@gmail.com> (https://github.com/Minishlink)",
|
|
6
6
|
"license": "MIT",
|
package/src/internals/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '11.0.0-
|
|
2
|
+
export const version = '11.0.0-rc8';
|