From 3bd0812d854108577490112c4a1fa98a2a1b2cd8 Mon Sep 17 00:00:00 2001 From: l3iggs Date: Sun, 17 Aug 2014 23:11:01 -0700 Subject: [PATCH] [Android] set default target ABI --- android/phoenix/jni/Application.mk | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/android/phoenix/jni/Application.mk b/android/phoenix/jni/Application.mk index f3a006487a..ae50f31341 100644 --- a/android/phoenix/jni/Application.mk +++ b/android/phoenix/jni/Application.mk @@ -3,4 +3,9 @@ ifeq ($(GLES),3) else APP_PLATFORM := android-9 endif -APP_ABI := $(TARGET_ABIS) + +ifndef TARGET_ABIS + APP_ABI := armeabi-v7a mips x86 +else + APP_ABI := $(TARGET_ABIS) +endif