diff --git a/android/phoenix/jni/Application.mk b/android/phoenix/jni/Application.mk index 2466e00247..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 := armeabi-v7a mips x86 + +ifndef TARGET_ABIS + APP_ABI := armeabi-v7a mips x86 +else + APP_ABI := $(TARGET_ABIS) +endif