Поскольку мое приложение приближается к завершению, я анализировал свой apk с помощью Android Studio.Я увидел внезапное увеличение размера apk:
Папка lib
, занимающая 10 МБ места, содержит только эти файлы:
Я уверен, что у меня нет собственных зависимостей, но я не уверен, как эти файлы попали сюда.Может кто-нибудь помочь мне, я хочу удалить эти файлы из моего приложения.
Редактировать 1
dependencies {
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support:support-v4:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'com.intuit.sdp:sdp-android:1.0.5'
implementation 'com.intuit.ssp:ssp-android:1.0.5'
implementation 'com.google.android.gms:play-services-safetynet:15.0.1'
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.squareup.retrofit2:converter-scalars:2.4.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
implementation 'com.squareup.retrofit2:converter-jackson:2.4.0'
implementation 'io.reactivex.rxjava2:rxjava:2.2.2'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
implementation 'com.koushikdutta.ion:ion:2.2.1'
//implementation 'com.facebook.shimmer:shimmer:0.3.0'
//implementation 'com.facebook.android:facebook-login:[4,5)'
implementation 'it.sephiroth.android.library.targettooltip:target-tooltip-library:+'
implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:2.1.2'
implementation 'com.android.support:multidex:1.0.3'
//Needed for custom web view implementation
implementation 'com.android.support:customtabs:28.0.0'
}