Is there any way to reduce the APK size within 5-10 MB after adding Zoom Android SDK?

419 Views Asked by At

I have created a demo app, where implemented Zoom Android SDK. This demo is running successfully but after adding Zoom SDK, the APK size is getter than 50 MB. I have added only the “abiFilters” “arm64-v8a”, “armeabi-v7a”. After that the APK size is not reduced. Is there any way to reduce the APK size within 5-10 MB after adding Zoom SDK?

1

There are 1 best solutions below

2
On

You could try to shrink your code setting minifyEnabled true and shrinkResource true in your build.gradle

Android developers link