Flutter Apk size increase too much after implementing Zoom

Viewed 261

In my flutter project I integrated Zoom. It works fine but my app size increase too much. library I used: flutter_zoom_sdk: ^0.0.6

I tried abi filter like:

buildTypes {
    release {
        // TODO: Add your own signing config for the release build.
        // Signing with the debug keys for now, so `flutter run --release` works.
        signingConfig signingConfigs.release
        ndk {
            abiFilters "arm64-v8a", "armeabi-v7a"
        }
    }
}

But I am still having app size more than 60 MB in release mode, I am looking for option so I can reduce my app size.

0 Answers
Related