And the loading time is too much. I read the previous posts about this issue (so many). I need a recommendation:
Wait for a solution? Some workaround? or just downgrade the version without this problem?
I need go to Production soon and the time is very important for me.
If Android
Remove android platform :
ionic platform rm android
then Instal The last version :
ionic platform add android@latest
And when you build use : ionic build android --prod
Good Luck
Your app scripts need to be updated make it 1.1.4 in package.json.
and then run in console
rm -rf node_modules
npm install
ionic rm platform android
ionic add platform android
npm build --aot --prod
ionic run android --prod
Hi friend! I try this and it work for me!!! Only comment that my app-scripts already insted 1.1.4, but i do your comment (next steps) and it work, i have a notification in console that says DEVICE READY FIRED AFTER 947 ms!!!
Thank you brother!!! You safe me!!![quote=“padmini_84, post:10, topic:78307, full:true”]
Your app scripts need to be updated make it 1.1.4 in package.json.
and then run in console
rm -rf node_modules
npm install
ionic rm platform android
ionic add platform android
npm build --aot --prod
ionic run android --prod
[/quote]