react-native 集成Code-Push的常用命令
Posted liuw-flexi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-native 集成Code-Push的常用命令相关的知识,希望对你有一定的参考价值。
https://www.devio.org/2016/07/23/React-Native应用部署-热更新-CodePush最新集成总结/ 集成: npm install -g code-push-cli code-push -v 向code-push服务器注册app code-push app add <appName> <os> <platform> 比如: code-push app add Steward_RN ios react-native code-push app add Steward_RN android react-native rnpm link react-native-code-push 在AppDelegate.m中修改bundle包加载路径 在info.plist中添加code-push平台生成的key CodePushDevelopmentKey 策略: import codePush from ‘react-native-code-push‘ 后台请求更新 codePush.sync() 发布更新: code-push release-react <appName> <platform> 生成bundle
以上是关于react-native 集成Code-Push的常用命令的主要内容,如果未能解决你的问题,请参考以下文章
React Native之code-push的热更新(ios android)
React Native之code-push的热更新(ios android)
React-native 和 Firebase ListView 集成