android - How to reduce the size of an APK file -
android - How to reduce the size of an APK file -
when create new android app using android studio , export apk file, resulting file 914kb in size. did not add together code or resources. how can bring size bare minimum.
thanks in advance.
update: enabled proguard, brought downwards size 564kb. extracted apk , saw there many drawable folders in apk
all these folders contains png files names starting "abc_ic.." . there way exclude them?
i think can utilize android proguard tool
. proguard tool shrinks, optimizes, , obfuscates code removing unused code , renaming classes, fields, , methods semantically obscure names. result smaller sized .apk file more hard reverse engineer.
for more details, please refer here.
you can seek remove reference's libary(seem added android-support-v7 project).
android apk
Comments
Post a Comment