Pro
This plugin enables Ionic Pro services like live updates and error monitoring
Stuck on a Cordova issue?

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.
Installation
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Supported Platforms
- Android
- iOS
Usage
import { Pro, AppInfo, DeployInfo } from '@ionic-native/pro/ngx';
constructor(private pro: Pro) { }
// Get app info
this.pro.getAppInfo().then((res: AppInfo) => {
console.log(res)
})
// Get live update info
this.pro.deploy.info().then((res: DeployInfo) => {
console.log(res)
})