There are 5 libraries. All of them are connected via Gradle. Every lib has support.v7 and support.design.
Is there any way to disable them, and leave only one. And because of them, the size of the apk does not weigh 3 megabytes, but 6.
There are 5 libraries. All of them are connected via Gradle. Every lib has support.v7 and support.design.
Is there any way to disable them, and leave only one. And because of them, the size of the apk does not weigh 3 megabytes, but 6.
The APK libraries are not duplicated by default . Even more, gradle will not be able to build an APK if it contains duplicate classes. So the problem you have is definitely not in duplicate libraries. Open the APK as a normal archive, classes.dex
from there, decompile, look, which takes a lot of space. And also bring your proguard config to the question.
exclude
there is no proguard.sourceforge.net/manual/refcard.html - Vladyslav MatviienkoSource: https://ru.stackoverflow.com/questions/564036/
All Articles