react-native-code-push
react-native-code-push copied to clipboard
React Native module for CodePush
closes: https://github.com/microsoft/react-native-code-push/issues/2353 ### Tests - [x] `npm run test:android` - [x] building app, installing code-push bundle - on production Android app (RN 0.67.5, with same modification on [email protected] package using...
Fixes https://github.com/microsoft/react-native-code-push/issues/2624
Fix #2087. It looks like NPE is caused by [CodePushUpdateManager.java#L79](https://github.com/microsoft/react-native-code-push/blob/master/android/app/src/main/java/com/microsoft/codepush/react/CodePushUpdateManager.java#L79). When invoking `copyNecessaryFilesFromCurrentPackage()` method, If `currentPackageFolderPath` is `null`, copying `currentPackageFolderPath` to `newUpdateFolderPath` will be discarded.
### Steps to Reproduce 1. Publish an update 2. Trigger a sync in the next 30 seconds 3. Observe the 404 error ### Expected Behavior It is expected that we...
Hi, in Readme, Native Starter Pro link is broken. It redirect to ad. It seems inappropriate. It will be good to remove this link from this document.
The old configuration required modification if the android app directory wasn't at the root of the project. With this change, the script should work no matter where the android directory...
## Description This PR aims at reducing native CodePush installation steps: ### Plugin Installation and Configuration for React Native 0.60 version and above (Android) Step 1 1. In your `android/settings.gradle`...
**Sumary** In react-native 0.70 was updated file RCTBundleURLProvider and removed `fallbackResource` in `jsBundleURLForBundleRoot` method instance. The incorrect import cause problems during build with react-native-code-push. Now is need to use `fallbackExtension`...
Added findNodeModulePath script to codepush.gradle, which add supports for complex rn projects such as monorepo.
Hello, React Native is transitioning to bridgeless architecture with version 0.74. This architecture aims to improve performance and maintainability by removing the JavaScript bridge, which has traditionally been a bottleneck....