Using a local build, started by ionic run, the following works:
platform.ready().then(() => {
if (platform.is('cordova')) {
platform.resume.subscribe(() => {
//handling update
});
});
However, when app is run through Ionic View, no event is fired.