在Android Studio中构建后,APK大小增加了

时间:2017-12-08 18:53:13

标签: android apk

建筑后APK大小增加,apk尺寸从3 mb增加到20mb。 它是由于在圆圈中看到的lib。 如何删除这些lib文件??

https://i.stack.imgur.com/6ZCp5.png

apply plugin: 'com.android.application'

    android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "csdevbin.dua"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 6
        versionName "4.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            debuggable false
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }

        debug {
            debuggable true
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

我的依赖

implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'
implementation 'com.google.android.gms:play-services-ads:11.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
testCompile 'junit:junit:4.12'
implementation 'com.google.firebase:firebase-core:11.0.2'
implementation 'com.startapp:inapp-sdk:3.6.7'
implementation 'com.github.barteksc:android-pdf-viewer:2.8.1'
implementation 'com.android.support:cardview-v7:27.0.2'

3 个答案:

答案 0 :(得分:2)

  

我使用过{com.github.barteksc:android-pdf-viewer:2.8.1'}

该库使用本机代码来呈现PDF。该库的文档有a FAQ with a question specifically about your concern

答案 1 :(得分:0)

如果您的代码使用这些库,则无法删除它们。但您可以使用ProGuard来缩小应用的大小。你可以发布你的build.gardle文件吗?

答案 2 :(得分:0)

在生成签名应用时,以捆绑的形式生成。因此,Google Play会自动减小应用程序的大小以支持用户设备。 PDF库包含所有设备所需的所有文件。因此,如果您以 APK 的身份登录,则所有这些存储库都将打包。尝试捆绑。