Last active
December 25, 2018 13:29
-
-
Save mazhekin/4e620f6c8acc41c560a5a6058b12234c to your computer and use it in GitHub Desktop.
Ionic app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ionic start myApp sidemenu | |
ionic serve -c // to test in reql device via Ionic DevApp | |
ionic cordova platform add android // add angroid native code | |
ionic cordova build android // debug | |
ionic cordova build android --prod --release | |
--prod apply on the bundle and gonna perform tricks to compress it, uglify it, minify it etc. | |
--release is performed by cordova to sign your app aka your app have to be signed in order to be published in the play store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment