(Android) restrict abi targets

This fixes a build error I get with the latest android NDK (r10) complaining about an unsupported architecture (armeabi, maybe it was retired). Also, libretro-build-android-mk.sh only builds the cores for armeabi-v7a, mips and x86 anyway so there is no point in building the app for other architectures.
This commit is contained in:
l3iggs 2014-07-26 11:28:23 -07:00
parent 103a77832f
commit 628b644785

View File

@ -3,4 +3,4 @@ ifeq ($(GLES),3)
else
APP_PLATFORM := android-9
endif
APP_ABI := all
APP_ABI := armeabi-v7a mips x86