Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lisong/code-push-demo-app
react-native code-push 热更新例子
https://github.com/lisong/code-push-demo-app
code-push code-push-server react-native
Last synced: 29 days ago
JSON representation
react-native code-push 热更新例子
- Host: GitHub
- URL: https://github.com/lisong/code-push-demo-app
- Owner: lisong
- Created: 2016-08-19T04:50:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-04T10:34:32.000Z (over 5 years ago)
- Last Synced: 2024-10-04T19:11:45.699Z (about 1 month ago)
- Topics: code-push, code-push-server, react-native
- Language: JavaScript
- Homepage:
- Size: 451 KB
- Stars: 93
- Watchers: 6
- Forks: 45
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# base on
fork from https://github.com/Microsoft/react-native-code-push examples
# iOS eg.
```shell
$ git clone [email protected]:lisong/code-push-demo-app.git
$ cd code-push-demo-app
$ npm install
$ open ios/CodePushDemoApp.xcodeproj
```# android eg.
```shell
$ git clone [email protected]:lisong/code-push-demo-app.git
$ cd code-push-demo-app
$ npm install
$ cd android
$ ./gradlew assembleRelease
$ cd app/build/outputs/apk #install app-release.apk into your phone
```# codepush 热更新
```shell
$ code-push login http://api.code-push.com #登录code-push-server
$ code-push app add CodePushReactNativeDemo-ios ios react-native #iOS版
$ code-push app add CodePushReactNativeDemo-android android react-native #android版
$ cd code-push-demo-app
$ npm install
$ code-push release-react CodePushReactNativeDemo-ios ios -d Production #发布到code-push-server ios
$ code-push release-react CodePushReactNativeDemo-android android -d Production #发布code-push-server android
```