diff --git a/xwords4/android/app/build.gradle b/xwords4/android/app/build.gradle index 29985fdfa..1693601b2 100644 --- a/xwords4/android/app/build.gradle +++ b/xwords4/android/app/build.gradle @@ -223,6 +223,9 @@ android { externalNativeBuild { ndkBuild.arguments += ['BUILD_TARGET=release'] } + ndk { + abiFilters 'armeabi-v7a', 'arm64-v8a' + } } debug { debuggable true @@ -238,6 +241,10 @@ android { arguments += ['BUILD_TARGET=debug'] } } + + ndk { + abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' + } } }