Commit 2a4999b4bbbc66df11d958e4e5670af138f4577c

Sam Lantinga 2018-08-21T11:44:08

By default just build for 32-bit ARM and x86

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/android-project/app/build.gradle b/android-project/app/build.gradle
index 2475c17..7cc4cd7 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"