From 2a4999b4bbbc66df11d958e4e5670af138f4577c Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 21 Aug 2018 11:44:08 -0700 Subject: [PATCH] By default just build for 32-bit ARM and x86 --- android-project/app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/android-project/app/build.gradle b/android-project/app/build.gradle index 2475c17144707..7cc4cd732df17 100644 --- a/android-project/app/build.gradle +++ b/android-project/app/build.gradle @@ -21,6 +21,7 @@ android { externalNativeBuild { ndkBuild { arguments "APP_PLATFORM=android-14" + abiFilters 'armeabi-v7a', 'x86' } } testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"