Built my first app for android using your framework… but the APK are like over 1MB. What files in the www can I leave out of the build to lighten the APK filesize?
If your referencing the bundle js file, you can delete the additional files in that directory.
.
+____css
| |____ionic.app.min.css
+____img
|____index.html
+____js
|____lib
| +____ionic
| | +____css
| | | |____ionic.min.css
| | +____fonts
| | | |____ionicons.eot
| | | |____ionicons.svg
| | | |____ionicons.ttf
| | | |____ionicons.woff
| | +____js
| | | |____ionic.bundle.min.js
+____templates
| |____friend-detail.html
| |____tab-account.html
| |____tab-dash.html
| |____tab-friends.html
| |____tabs.html
So your directory should look something like this
1 Like