In order to integrate CodePush into your Android project, please perform the following steps:
-
In your
android/app/build.gradle
file, add thecodepush.gradle
file as an additional build task definition to the end of the file:... apply from: "../../node_modules/@code-push-next/react-native-code-push/android/codepush.gradle" ...
-
Update the
MainApplication
file to use CodePush via the following changes:For React Native 0.76 and above: update the
MainApplication.kt
Important! : PackageList must be instantiated only one in application lifetime.
... // 1. Import the plugin class. import com.microsoft.codepush.react.CodePush class MainApplication : Application(), ReactApplication { override val reactNativeHost: ReactNativeHost = object : DefaultReactNativeHost(this) { override fun getPackages(): List<ReactPackage> = PackageList(this).packages.apply { // Packages that cannot be autolinked yet can be added manually here, for example: // add(MyReactNativePackage()) } // 2. Override the getJSBundleFile method in order to let // the CodePush runtime determine where to get the JS // bundle location from on each app start override fun getJSBundleFile(): String { return CodePush.getJSBundleFile() } }; }
-
Add the Deployment key to
strings.xml
:To let the CodePush runtime know which deployment it should query for updates, open your app's
strings.xml
file and add a new string namedCodePushDeploymentKey
, whose value is the key of the deployment you want to configure this app against (like the key for theStaging
deployment for theFooBar
app). You can retrieve this value by runningappcenter codepush deployment list -a <ownerName>/<appName> -k
in the CodePush CLI (the-k
flag is necessary since keys aren't displayed by default) and copying the value of theKey
column which corresponds to the deployment you want to use (see below). Note that using the deployment's name (like Staging) will not work. The "friendly name" is intended only for authenticated management usage from the CLI, and not for public consumption within your app.In order to effectively make use of the
Staging
andProduction
deployments that were created along with your CodePush app, refer to the multi-deployment testing docs below before actually moving your app's usage of CodePush into production.Your
strings.xml
should looks like this:<resources> <string name="app_name">AppName</string> <string moduleConfig="true" name="CodePushDeploymentKey">DeploymentKey</string> </resources>
Note: If you need to dynamically use a different deployment, you can also override your deployment key in JS code using Code-Push options
In order to effectively make use of the Staging
and Production
deployments that were created along with your CodePush app, refer to the multi-deployment testing docs below before actually moving your app's usage of CodePush into production.
Starting with CLI version 2.1.0 you can self sign bundles during release and verify its signature before installation of update. For more info about Code Signing please refer to relevant code-push documentation section. In order to use Public Key for Code Signing you need to do following steps:
Add CodePushPublicKey
string item to /path_to_your_app/android/app/src/main/res/values/strings.xml
. It may looks like this:
<resources>
<string name="app_name">my_app</string>
<string name="CodePushPublicKey">-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtPSR9lkGzZ4FR0lxF+ZA
P6jJ8+Xi5L601BPN4QESoRVSrJM08roOCVrs4qoYqYJy3Of2cQWvNBEh8ti3FhHu
tiuLFpNdfzM4DjAw0Ti5hOTfTixqVBXTJPYpSjDh7K6tUvp9MV0l5q/Ps3se1vud
M1/X6g54lIX/QoEXTdMgR+SKXvlUIC13T7GkDHT6Z4RlwxkWkOmf2tGguRcEBL6j
ww7w/3g0kWILz7nNPtXyDhIB9WLH7MKSJWdVCZm+cAqabUfpCFo7sHiyHLnUxcVY
OTw3sz9ceaci7z2r8SZdsfjyjiDJrq69eWtvKVUpredy9HtyALtNuLjDITahdh8A
zwIDAQAB
-----END PUBLIC KEY-----</string>
</resources>
- A pure expo react-native is not supported yet. We are planning to look into this after a while. See #5
- A bare react-native app with expo sdk is supported, but you have to initialize rn app without
ReactNativeHostWrapper
of expo. It seemsReactNativeHostWrapper
overridesgetJsBundleFile
internally, which preventsCodePush
from being configured correctly.
expo/expo#25865