This repository was archived by the owner on May 20, 2025. It is now read-only.
v1.14.2-beta
This release improves the linking experience and fixes a bug with not being able to resolve the SoLoader library during runtime.
New Features
react-native link react-native-code-push
now automates all of the linking process for you. For Android, it imports thereact-native-code-push
library project for you and adds thecodepush.gradle
build step insettings.gradle
andandroid/app/build.gradle
, prompts you for your deployment key and modifies theMainApplication
/MainActivity
java file for you to include the CodePush react package and consult CodePush for the path to the root JS bundle file. For iOS, it similarly also adds the CodePush project to your XCode project, prompts you for your deployment key, adds it to yourInfo.plist
file, and updates yourAppDelegate.m
file to consult CodePush for the path to your root JS bundle file.
Bug Fixes
- Removed the dependency on SoLoader. We earlier relied on it being there as a transitive dependency of React Native, however after the release of React Native 0.31 where it was made an external dependency, there were some reported runtime issues with being unable to resolve the library.