© 2018, Drifty, Inc. All rights reserved. Reproduction and distribution of this material is prohibited.
Creator
View
Deploy
Package
Monitor
Rapid app prototyping
Remote app testing
Live app updating
Native cloud builds
Error/crash reporting
Code locally
Push the code to Pro
Make the app available to testers and collaborators
Testers view the app and provide feedback
At some point your app is built and deployed to an app store
Pro's deploy feature means that changes to the code are automatically seen when your users run the app
Developer accounts can use the package feature to create the binaries
git push ionic master
Select Channel > Set up deploy
Choose a deployment strategy
Manual
Add the Ionic Cordova plugin
cordova plugin add cordova-ionic-plugin …
Deploy to App Store
Your app can log errors via the @ionic/pro package
Errors record line numbers in pre-transpiled source
Uncaught exceptions are logged, or you can procedurally log
Errors are seen in the Dashboard via the Monitoring tab
Pro.getApp().monitoring.exception(errorObject);
Pro.getApp().monitoring.log('Something happened', { level: 'error' })