Android Setup
In order to integrate CodePush into your Android project, please perform the following steps:
Plugin Installation and Configuration for React Native 0.76 version and above (Android)
-
In your
android/app/build.gradlefile, add thecodepush.gradlefile as an additional build task definition to the end of the file:...
apply from: "../../node_modules/@turbopush/react-native-code-push/android/codepush.gradle"
... -
Update the
MainApplicationfile to use CodePush via the following changes:For React Native 0.76 and above: update the
MainApplication.ktImportant! : 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.xmlfile 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 theStagingdeployment for theFooBarapp). You can retrieve this value by runningturbopush deployment list -a <appName> -kin the CodePush CLI (the-kflag is necessary since keys aren't displayed by default) and copying the value of theKeycolumn 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.
Your
strings.xmlshould 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
Code Signing setup
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 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>