Simon Wicki (@zwacky)
Head of Frontend at JustWatch.com
What can OTA do for you?
Update your App outside AppStore/Play Store
Yes.
But... Your app has to be doing still the same.
What is available and what do they offer
How does it work?
In 3 steps
config.xml
PROTIP: or set it programmatically for stage/prod OTA updates in JS
window.codePush.checkForUpdate(
onUpdateCheck,
onCheckError,
isBetaTester() ? deployKeys.beta : deployKeys.prod
);
config.xml
index.html
// sugar method that does *everything*
codePush.sync();
more work, more flexibility
cordova prepare
// or whatever you use to package your app.
// basically to that point so that
// `ionic run [platform]` doesn't fail.
code-push release justwatch ./platforms/ios/www 0.5.11 -d "ios-stage"
code-push promote justwatch ios-stage ios-prod
Breaking the app
Ever wanted to release your mobile app more quickly?
Update finished. Thank you!