diff --git a/android/app/build.gradle b/android/app/build.gradle index 484e2d1a..fd7ed6a6 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -52,7 +52,16 @@ android { versionName flutterVersionName multiDexEnabled true } + splits { + abi { + enable true + reset() + include "x86_64", "armeabi-v7a", "arm64-v8a" + // Specifies that we do not want to also generate a universal APK that includes all ABIs. + universalApk true + } + } buildTypes { release { // TODO: Add your own signing config for the release build. @@ -61,6 +70,7 @@ android { } } + buildFeatures { viewBinding true aidl true