Home > Mobile >  can i download android library after installing apk?
can i download android library after installing apk?

Time:01-30

I'm developing an app similar to Instagram, and in my app I used the Ffmpeg library to compress and trim videos, but this library has greatly increased the size of my app. Is there any way to add this library to the project after installing the apk? or do you have any way to reduce the apk size to 10 MB?

current apk size: 35MB

minifyEnabled true
shrinkResources true

// ffmpeg
implementation 'com.arthenica:mobile-ffmpeg-min:4.4.LTS'

CodePudding user response:

of course you cannot ! making Apk means you compile all of your codes whit 3party library together, so you cannot download library after installing Apk on your phone

here is some tips for reducing android Apk size: reduce apk size

  •  Tags:  
  • Related