Unverified Commit 51233523 authored by Gray Mackall's avatar Gray Mackall Committed by GitHub

Add abifilters to our gradle templates (#135529)

Fixes https://github.com/flutter/flutter/issues/135173, and could also be interpreted as fixing https://github.com/flutter/flutter/issues/83596 based on @chinmaygarde 's comment.
parent edc73bce
......@@ -41,6 +41,9 @@ android {
targetSdk flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
ndk {
abiFilters 'arm64-v8a', 'x86_64', 'armeabi-v7a'
}
}
buildTypes {
......
......@@ -49,6 +49,9 @@ android {
targetSdk flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
ndk {
abiFilters 'arm64-v8a', 'x86_64', 'armeabi-v7a'
}
}
buildTypes {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment