问题描述
我是Android新手,当我创建一个简单的Hello World应用程序时,其大小约为900 KB。但是我看到许多应用程序在Play Chain上就像Chain Reaction一样只有200 KB。
默认的Hello World应用程序是否包含一些我不需要的资源?如何删除它们?
任何帮助将不胜感激。在此先感谢。
I am new to android and when I create a simple Hello World app its size is about 900 KB. But I have seen many apps on play store like Chain Reaction having size of only 200 KB.Do the default Hello World app contains some resources that I don't need? How to remove them?Any Help will be appreciated. Thanks in advance.
推荐答案
有一些方法可以减少输出APK文件的大小:
There're some ways to reduce the size of the output APK file:
-
确保没有未使用的资源。您可以使用
Android Lint Inspection来检查它。只需按 Control + Alt + Shift + i ,然后按
键入未使用的资源(不带引号)。如果有未使用的
资源,您可以手动删除它。
Make sure there's no unused resources. You can check it usingAndroid Lint Inspection. Just press Control + Alt + Shift + i andtype "Unused resources" (without quotes). If there's unusedresources, you can delete it manually.
使用ProGuard参见。
Use ProGuard see here.
这篇关于Hello World安卓应用的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!