App size estimate

Hi Ricky,

Thanks for the post. The Zoom Android SDK support the following CPU architecture: armeabi-v7a, x86, arm64-v8a, x86_64, and by default it will include the supporting files of all. If you would like to reduce the size of the library, you can add abiFilters to only support certain CPU architecture like this:

ndk {
    abiFilters “arm64-v8a”,“XXX”
}

Hope this helps. Thanks!

1 Like