Reduce the size of apk with lots of audio and video files

194 views Asked by At

I have an app that uses lots of audio and video files which increases the size of the apk. I don't want the user to download the audio and video files from the internet every time, I want to bundle it with the apk. What are the design options available ?

1

There are 1 answers

4
Jeffy On

Try using Proguard. It removes all the unused classes and refactor the class name to prevent reverse engineering and thus reduces the apk file size.

https://developer.android.com/studio/build/shrink-code.html

Hope this helps