When i'm generating android application through Delphi Xe7, the App_Name.Apk file 6 MB and when i'm installing in the mobile, the application size is 25 MB. Please provide me the information that there are any other settings to reduce the size of the application size. And in the code i'm having only single form, 6 class declaration. Also i'm using the Release settings which is in the Options (Shift+ctrl+F11).
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Is there a Delphi 5 component that can handle .png
- Listening to outgoing sms not working android
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
Delphi XE7 is a cross platform development tool. The power is in it's cross platform nature. It provides a framework called Firemonkey that works on all four platforms (Android, IOS, OSX, Windows). The Firemonkey run time library weighs in at between 6MB and 10MB depending on the platform and the units you use. If you are using the graphical controls of Firemonkey you will have that size footprint.
Similar cross platform frameworks like Adobe AIR, QT, and others have a similar size footprint. However, you can add thousands of lines of code and hundreds of controls and the size will still be about the same.
It is possible to make a bare bones Android app without using Firemonkey in either C++ or Object Pascal but you lose access to all of the Firemonkey controls.