Flutter教程

Code Push

Contents

CodePush plugin for Cordova by Microsoft that supports iOS and Android.

For more info, please see https://github.com/Dellos7/example-cordova-code-push-plugin

https://github.com/Microsoft/cordova-plugin-code-push

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 微软消息推送 Code Push插件的安装(Installation)

ionic cordova plugin add cordova-plugin-code-push npm install @ionic-native/code-push
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/code-push

Ionic 微软消息推送 Code Push插件支持的平台(Supported Platforms)

  • Android
  • iOS

Ionic 微软消息推送 Code Push插件的用法(Usage)

import { CodePush } from '@ionic-native/code-push/ngx';

constructor(private codePush: CodePush) { }

...

// note - mostly error & completed methods of observable will not fire
// as syncStatus will contain the current state of the update
this.codePush.sync().subscribe((syncStatus) => console.log(syncStatus));

const downloadProgress = (progress) => { console.log(`Downloaded ${progress.receivedBytes} of ${progress.totalBytes}`); }
this.codePush.sync({}, downloadProgress).subscribe((syncStatus) => console.log(syncStatus));