From 0904a5299e26301bd178f57ddef5ebdf5110bbb4 Mon Sep 17 00:00:00 2001 From: Eric House Date: Mon, 6 Apr 2020 17:56:40 -0700 Subject: [PATCH] specify ABI per-debug/release: no x86 for release This is as it was before I updated my invocation of NDK recently. --- xwords4/android/app/build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) 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' + } } }