I’m one of mobile app developers and I loves ionic so much and I created and published some applications for other users and I update these apps every 2 to 3 months.
But as I read from some websites/pages, most of ionic services will be blocked/stoped soon. So how can continue using ionic after this month !
Should I go to an other language to develop mobile apps freely or ionic pro will support some services free ?
I can’t believe what will happens after block all free services such “ionic package build android, or ionic upload, etc”
It definitely sound like hoax and bullshit websites. Where did you read that?
UPDATE
I misunderstood what OP meant with “ionic services”. He meant “Ionic Cloud services – Push and Auth” which effectively gonna be shutdown, apparently, begin of February 2018
So about your original question, I understand that only “Ionic Cloud services – Push and Auth” gonna be discontinued. The reason behind is that they changed their business model and that they are offering now the package Ionic Pro. Ionic Pro contains services like “Creator”, “View app”, “Deploy”, “Package” and “Monitoring” Appflow: The Easiest Way to Build and Deploy Apps | Ionic.io.
When it comes to the core, respectively “ionic-angular”, “ionic cli”, “ionic-native” and “ionic-app-scripts”, these projects gonna still be open source, the above mentioned announcement have no effect about them.
Currently my published app checks the live update service upon login…
will it go to the catch directly when the free services is stopped? example :
this.deploy.check().then((snapshotAvailable: boolean) => {
if (snapshotAvailable) {
// When snapshotAvailable is true, you can apply the snapshot
}
}).catch(()=>{// will enter here if service is stopped?
//do as usual
});