如何从我的app模块中释放已签名的apk时减小apk大小, 我试过了
在我的Gradle文件中,我添加了这些依赖项
compile project(':v-plus')
compile project(':android-pdf-viewer')
compile 'com.android.support:support-v4:27.0.1'
compile 'com.android.support:appcompat-v7:27.0.1'
compile 'com.android.support:design:27.0.1'
compile 'com.android.support:recyclerview-v7:27.0.1'
compile 'com.android.support:cardview-v7:27.0.1'
compile 'com.android.support:customtabs:27.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.android.gms:play-services-analytics:11.4.2'
compile 'com.google.android.gms:play-services-location:11.4.2'
compile 'com.google.firebase:firebase-messaging:11.4.2'
compile 'com.google.android.gms:play-services-auth:11.4.2'
compile 'com.google.firebase:firebase-core:11.4.2'
compile 'com.facebook.network.connectionclass:connectionclass:1.0.1'
compile 'com.google.code.gson:gson:2.7'
compile 'com.facebook.android:facebook-android-sdk:4.+'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'me.relex:circleindicator:1.2.2@aar'
compile 'com.firebase:firebase-jobdispatcher:0.8.4'
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.61'
通过使用上面和创建发布后的apk,大小变为28 MB,我该如何解决这个问题。