Why increase apk size in different versions of Android
1 answer
When installing APK on Android system, the installed DEX. Which contains your code, resources, etc., compiled as binaries. Your dex is usually the same size as your apk, unless you have any resources not compiled into assets.
Well, we all know that. What is not distributed globally is that android keeps its original apk as well. Perhaps for reinstallation in case of errors or other reasons.
This is why the memory capacity of our applications is doubled on the system. This is the sum of the original apk size and dex installed.
+6
source to share