Reputation: 1
Please Explain me difference between:
ionic cordova build android -> .apk Slowin loading
ionic cordova build android --prod -> .apk Fast in loading
ionic cordova build android --prod --release -> .apk Slow in loading
Thanks
Upvotes: 0
Views: 549
Reputation: 730
Without flags it generates the apk debug version. And with release it generates the apk ready for the store but unsigned when you sign it you can upload it.
The --prod flag:
This will minify your app’s code as Ionic’s source and also remove any debugging capabilities from the APK.
Upvotes: 1