We have an ionic2 angular2 project running with ionic serve on the browser. What are the next steps to generate the APK IPA for ios android devices ?
- Check whether you have
AndroidandiOS SDK'sinstalled and Updated - perform
ionic platform add androidandionic platform add ios - perform
ionic build androidandionic build ios - perform
ionic run androidandionic run android
as far as I know to run and deploy iOS app you need MAC machine and iOS SDK's installed with updated version…
and to perform ionic run ios without any errors/problem first perform these two commands
npm install -g ios-sim and npm install -g ios-deploy
use sudo if needed with these two above commands
1 Like