简单的Hello World项目变成了一个7 MB的应用程序

时间:2018-02-17 13:35:15

标签: android installation size

我做了一个简单的“Hello World' Android 3.0.1上的项目,由于某种原因,它的大小是6.8MB。那是为什么?
我看到this类似的问题,但它没有帮助

这是build.gradle文件:

    android
    {
compileSdkVersion 26
defaultConfig {
    applicationId "com.example.abc.testing"
    minSdkVersion 19
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes
        {
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
dependencies
    {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    }

这是app-debug

this是安装后的尺寸

0 个答案:

没有答案