安装文件比APK文件大4-5倍

问题描述 投票:0回答:1

我的APK文件大小为14mb。但是,在我的设备上安装该应用程序可以给我54mb的空间。

我已大大减少了我的res资产的大小(目前只有6 mb)。另外,我在gradle文件中添加了以下几行:

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

        }
    }

我的依赖项如下:

dependencies {


    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.android.material:material:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'androidx.gridlayout:gridlayout:1.0.0'
    implementation 'com.google.android:flexbox:1.0.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'com.github.hotchemi:android-rate:1.0.1'
    implementation 'com.google.firebase:firebase-core:17.0.0'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
    implementation 'com.google.firebase:firebase-auth:19.0.0'
    implementation 'com.firebaseui:firebase-ui-auth:4.2.0'
    implementation 'com.google.firebase:firebase-database:19.0.0'
    implementation 'com.anjlab.android.iab.v3:library:1.0.44'
    implementation 'com.google.android.gms:play-services-auth:17.0.0'
    implementation 'com.google.firebase:firebase-messaging:19.0.0'
    implementation 'com.google.firebase:firebase-inappmessaging-display:19.0.0'
    implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
    implementation 'androidx.multidex:multidex:2.0.0'
    implementation 'com.google.firebase:firebase-config:19.0.0'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
    implementation 'com.squareup.picasso:picasso:2.5'
    implementation 'com.squareup.okhttp:okhttp:2.5.0'
    implementation 'com.github.hajiyevelnur92:intentanimation:1.0'
    implementation files('libs/YouTubeAndroidPlayerApi.jar')

我听说安装文件的大小可以增加一倍,或者在最坏的情况下可以增加两倍,但实际上不会比原始APK文件大4-5倍。

什么还会导致安装和APK大小有如此大的差异?

android apk size filesize
1个回答
0
投票

分析了我的依赖关系后,我得出了启用这一部分的结论

implementation 'com.google.firebase:firebase-inappmessaging-display:19.0.0'

自动将20mb添加到我的安装文件中。我希望Firebase对此有所警告。

© www.soinside.com 2019 - 2024. All rights reserved.