我做了一个基本的应用程序,只包含微调器和按钮,但它的发布模式大小是1.4 MB,我认为太大,导致许多优秀的应用程序可用于200kB以下
所以我在gradle文件中尝试了
buildTypes {
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
首先我添加 shrinkrsources true 但没有任何反应,然后我将 minifyEnabled true 的大小减少到800 KB,
然后按
尝试 Android lintctrl + alt + shift + i
并输入未使用的资源,没有任何反应,
然后我在android studio中尝试了
重构>删除未使用的资源
,仍然没有发生
所以我将扩展名从.apk更改为.zip 然后解压缩然后我找到了一个res文件夹,其中包含很多文件夹,其中包含许多从未使用过的图标,我认为那些是大尺寸的原因
那么如何在构建期间删除这些图标以减少apk大小,
unused icons inside res > drawable folder
build.gradle模块
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.example.com"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
resConfigs "en"
}
buildTypes {
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.0'
}
build.gradle项目
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}