Skip to content

Commit

Permalink
disable broken abi
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Feb 25, 2025
1 parent 9b5a9e4 commit 9c5863f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ android {
targetSdk = flutter.targetSdkVersion
versionCode = flutterVersionCode.toInteger()
versionName = flutterVersionName

ndk {
abiFilters 'arm64-v8a', 'x86_64'
}
}

signingConfigs {
Expand Down Expand Up @@ -94,7 +98,7 @@ flutter {
source = "../.."
}

ext.abiCodes = ["x86_64": 1, "arm64-v8a": 2, "armeabi-v7a": 3]
ext.abiCodes = ["x86_64": 1, "arm64-v8a": 2]
import com.android.build.OutputFile
android.applicationVariants.all { variant ->
variant.outputs.each { output ->
Expand Down

0 comments on commit 9c5863f

Please sign in to comment.