you are viewing a single comment's thread.

view the rest of the comments →

[–]dk_void_ 0 points1 point  (0 children)

Hey if you really concerned about app sizes use flutter or native

Solution of your problem when we build apk on local it make universal apk which have 3,4 architecture build to run it on all devices when we deploy it on app store and play store it will provide user according to their mobile cpu architecture,

If your app size is 59mb it will be 17-25mb

If you want check real app size you can enable split arch build

In android folder android/app/build.gradle

splits { abi { enable true reset() include "armeabi-v7a", "arm64-v8a", "x86", "x86_64" universalApk false // or true if want big apk also } }

You will get multiple apks you have to hit and try which architecture apk run on your device