React Native项目配置Code Push

2020-07-01  本文已影响0人  _若无

react native 项目配置code push
本次项目的项目依赖关键包的版本如下:

react:  6.11.0,
react-native: 0.62.2,
react-native-code-push: ^6.2.1,
npm install -g code-push-cli
npm install --save react-native-code-push

配置IOS

pod install
#import <CodePush/CodePush.h>
image.png
return [CodePush bundleURL];
<key>CFBundleVersion</key>
<string>1.0.0</string>
<key>CodePushDeploymentKey</key>
<string>$(CODEPUSH_KEY)</string>
<key>CodePushServerURL</key>
<string>$(CODEPUSH_URL)</string>

到此IOS端的CodePush配置完成,然后提交版本进行测试即可。

Android配置code push

apply from: "../../node_modules/react-native/react.gradle"
apply from: "../../node_modules/react-native-code-push/android/codepush.gradle"
  // 添加的内容
   @Override
   protected String getJSBundleFile() {
       return CodePush.getJSBundleFile();
   }
加完之后的内容
 <string moduleConfig="true" name="CodePushDeploymentKey">你的DeploymentKey</string>
./android/app/build.gradle

include ':react-native-code-push'
project(':react-native-code-push').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-code-push/android/app')

注意: 一定要修改rn项目下./node_modules/react-native-code-push/android/app/src/main/java/com/microsoft/codepush/react/CodePush.javamServerUrl地址。默认是官网地址

image.png

实例

import codePush from 'react-native-code-push';
const DEPLOYMENT_KEY=Platform.OS==='ios'?' 你的 ios key ':你的 android key';

 componentWillMount() {
    codePush.disallowRestart();//禁止重启
    this.syncImmediate(); //开始检查更新
  }
  componentDidMount(){
    codePush.allowRestart();                //在加载完了,允许重启
  }
  syncImmediate() {
    codePush.sync( {
            //安装模式
            //ON_NEXT_RESUME 下次恢复到前台时
            //ON_NEXT_RESTART 下一次重启时
            //IMMEDIATE 马上更新
            mandatoryInstallMode : codePush.InstallMode.IMMEDIATE,
            deploymentKey: DEPLOYMENT_KEY,
            //对话框
            updateDialog : {
                //是否显示更新描述
                appendReleaseDescription : true ,
                //更新描述的前缀。 默认为"Description"
                descriptionPrefix : "更新内容:" ,
                //强制更新按钮文字,默认为continue
                mandatoryContinueButtonLabel : "立即更新" ,
                //强制更新时的信息. 默认为"An update is available that must be installed."
                mandatoryUpdateMessage : "必须更新后才能使用" ,
                //非强制更新时,按钮文字,默认为"ignore"
                optionalIgnoreButtonLabel : '稍后' ,
                //非强制更新时,确认按钮文字. 默认为"Install"
                optionalInstallButtonLabel : '后台更新' ,
                //非强制更新时,检查到更新的消息文本
                optionalUpdateMessage : '有新版本了,是否更新?' ,
                //Alert窗口的标题
                title : '更新提示'
            }
        }
    );
  }

code push常用命令可在上一篇文章看到

上一篇下一篇

猜你喜欢

热点阅读