Code Push
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
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-code-push
$ npm install @awesome-cordova-plugins/code-push
$ ionic cap sync
$ ionic cordova plugin add cordova-plugin-code-push
$ npm install @awesome-cordova-plugins/code-push
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
Supported Platforms
- Android
- iOS
Usage
React
Learn more about using Ionic Native components in React
Angular
import { CodePush } from '@awesome-cordova-plugins/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));