是app-debug.apk应用程序的实际大小吗?

时间:2018-12-08 11:24:12

标签: android android-studio

我的问题是关于先转到build然后依次转到build (APKS)locating生成的文件,得到app-debug.apk是我的应用程序的实际大小吗? / p>

经过此过程后,我发现我的应用程序为7MB就足够了吗?

1 个答案:

答案 0 :(得分:1)

有2个构建变体,分别是debugrelease。默认构建选项设置为debug,通常具有更大的大小。要构建release变体并减小APK大小,可以使用ProGuard并将minifyEnabled中的true设置为build.gradle。要了解有关使用ProGuard的更多信息,请访问下面的链接:

How to use the ProGuard in Android Studio?

要找到一些ProGuard规则,请访问以下链接:

android-proguard-snippets

android开发者网站上的一些其他有用文章:

Configure build variants

Sign your app