Not supported on mobile devices yet, please use a desktop or laptop.
This guide walks you through setting up CodePush with a custom server for your React Native application.
Note: If you have already installed the CodePush plugin, you can skip this step.
First, install and configure the CodePush plugin for your React Native project following the official documentation.
Navigate to your strings.xml file:
android/app/src/main/res/values/strings.xml
Add the following line inside the <resources>
tag:
<string moduleConfig="true" name="CodePushServerUrl">https://bytepush.app</string>
<key>CodePushServerURL</key>
<string>https://bytepush.app</string>
import CodePush from 'react-native-code-push';
...
CodePush.sync({
updateDialog: true,
installMode: CodePush.InstallMode.ON_NEXT_RESTART,
deploymentKey: Platform.OS === 'ios' ? DeploymentKey_ios : DeploymentKey_android,
})
...
Install the CodePush CLI globally:
npm install code-push-cli@latest -g
Log in to your custom server:
code-push login http://bytepush.app
Register your applications:
# For iOS
code-push app add YOUR_APP_NAME_ios ios react-native Production
# For Android
code-push app add YOUR_APP_NAME_android android react-native
To deploy over-the-air (OTA) updates to your applications:
# For iOS
code-push release-react YOUR_APP_NAME_ios ios -d Production
# For Android
code-push release-react YOUR_APP_NAME_android android -d Production