1

安装 android 应用程序时,它是否只保留设备当前配置所需的资源(分辨率、语言等)并删除所有其他冗余资源?

(当它永远不会使用时,保留高分辨率图像有什么意义?)

4

2 回答 2

2

Whatever files you have in your APK will be persistent. it will not get deleted by any chance.

As far as I know, the idea is to make use of a single APK to be compatible with the different types of Android devices available. It is not a good practice to design different apk for different Devices.

But yes, some of your resources will never be used by the device and this is how it works.

if required you can create multiple apks for a single app itself.

And it is well explained here,

http://developer.android.com/guide/google/play/publishing/multiple-apks.html

于 2012-08-29T09:49:25.677 回答
1

Well, it is all compiled in one apk file, so no choice. It will keep all the resources.

于 2012-08-29T09:49:12.123 回答