Want to reduce zoom sdk size to same extent as zoom app in playStore

Hi,
I want to reduce zoom sdk size to same extent as zoom app in playStore, for that what are the exact abiFilters used in zoom app of playStore so that I can also put?
What other optimisations can we do so that our users have to only download as downloading zoom app?
When I will put that app which devices will not be supported in playStore?
How to handle those device not supported before starting meeting?

Hi amar.gupta,

Thanks for the post. Regarding any publicly available info of the Zoom client app, it will be available on https://support.zoom.us/hc/en-us.

If you would like to reduce the SDK size, you may add abiFilters in your Gradle file like the following:

ndk {
            abiFilters "armeabi-v7a", "x86"
        }

For example, if your app could be 64-bit only, then you can get rid of the “armeabi-v7a” and “x86”. If the compiled file of your app is aab file and you would like to upload it to the Google Play Store, then you can include all the architectures, and Google Play Store will download your app with the user’s architecture only, your app’s size won’t be that large when it goes to the user’s device.

Hope this helps. Thanks!

2 Likes