App size estimate

I have just integrated your new SDK supporting 64 bit from https://github.com/zoom/zoom-sdk-android
with the help of https://marketplace.zoom.us/docs/sdk/native-sdks/android/build-your-first-zoom-app/preparation
my app’s original size without Zoom SDK was 10mb but now it is of 76mb. Is it OK or I have done some error in integrating the SDK. A little bit confused. Earlier when the sdk was supporting only 32bit, my app’s size was of 45mb.
Please tell me what could be the estimated size of an app integrating the Zoom SDK 64bit supported ?

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

thanks. Actually after using the bundle , my app’s size reduced to 31mb.

Hi Ricky,

Glad to hear that the problem has been solved. Let us know if you have any other questions.

Thanks!

2 Likes

After applying ndk {
abiFilters “arm64-v8a”
}
this lines app size get reduced but the app is not working in samsung devices so how can we solve this, please give solution.

Hi vijaysolanki212,

Thanks for the reply. What is the Samsung device that you are having issues with? You could leverage the instruction set of each Samsung devices and refer to the instruction here: https://developer.android.com/ndk/guides/abis to configure your abiFilter.

Thanks!

Do you have a resolution for a similar problem on iOS SDK as well ?

Thanks for the reply. Please see my reply to your question in:

Thanks!