对于只有按钮和微调器的apk来说,APK尺寸很大

时间:2016-10-16 04:40:42

标签: android

我做了一个基本的应用程序,只包含微调器和按钮,但它的发布模式大小是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 lint
  

ctrl + alt + shift + i

并输入未使用的资源,没有任何反应,

然后我在android studio中尝试了

  

重构>删除未使用的资源

,仍然没有发生

所以我将扩展名从.apk更改为.zip 然后解压缩然后我找到了一个res文件夹,其中包含很多文件夹,其中包含许多从未使用过的图标,我认为那些是大尺寸的原因

那么如何在构建期间删除这些图标以减少apk大小,

res folder inside apk file

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
}

1 个答案:

答案 0 :(得分:1)

您只能从compile 'com.android.support:appcompat-v7:24.2.1删除build.gradle,将尺寸缩小到200KB左右。该库负责使应用程序向后兼容,因此如图所示,在磁盘上添加大量4.5 MB的额外代码,样式和资产。

with support library in disk on disk size

由于proguard压缩导致的此库最终大约为您的应用大小700 KB。所以你得到的800KB主要是support库。

如果您删除此库,您可以拥有200KB的应用程序,但它可能与所有Android版本不兼容。