Fix abiFilters to only use architectures supported by Flutter

This commit is contained in:
John Wesley 2024-01-23 22:04:08 -05:00
parent db17e4624d
commit d0b1f710a3
1 changed files with 4 additions and 2 deletions

View File

@ -48,12 +48,14 @@ android {
defaultConfig {
applicationId "one.jwr.interstellar"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
ndk {
// Filter for architectures supported by Flutter.
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64'
}
}
signingConfigs {