diff --git a/android/app/build.gradle b/android/app/build.gradle index 0592ac8..84e2c71 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -33,7 +33,7 @@ if (keystorePropertiesFile.exists()) { android { compileSdk flutter.compileSdkVersion - ndkVersion "25.2.9519653" + ndkVersion '25.1.8937393' compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -56,6 +56,7 @@ android { versionCode flutterVersionCode.toInteger() versionName flutterVersionName multiDexEnabled true + ndk { abiFilters "arm64-v8a", "armeabi-v7a", "x86_64" } } signingConfigs { diff --git a/android/gradle.properties b/android/gradle.properties index 94adc3a..4c750b2 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,3 +1,4 @@ org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true +android.useDeprecatedNdk=true