From 25f18db787f6f8eab40e102ae6b3441308d27ecb Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Fri, 4 Oct 2013 14:23:13 +0300 Subject: [PATCH] [android] Removed mips platform support as it's not popular on the markets --- android/jni/Application.mk | 2 +- tools/autobuild/android.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/jni/Application.mk b/android/jni/Application.mk index 9cb37e97cc..caff25fc67 100644 --- a/android/jni/Application.mk +++ b/android/jni/Application.mk @@ -2,7 +2,7 @@ NDK_TOOLCHAIN_VERSION := 4.6 APP_PLATFORM := android-5 ifeq (x$(NDK_ABI_TO_BUILD), x) - APP_ABI := armeabi armeabi-v7a mips x86 + APP_ABI := armeabi armeabi-v7a x86 else APP_ABI := $(NDK_ABI_TO_BUILD) endif diff --git a/tools/autobuild/android.sh b/tools/autobuild/android.sh index 9ed9f33d52..a682af3e03 100644 --- a/tools/autobuild/android.sh +++ b/tools/autobuild/android.sh @@ -28,7 +28,7 @@ fi if [[ $# > 1 ]] ; then NDK_ABI_LIST=$2 else - NDK_ABI_LIST=(armeabi armeabi-v7a mips x86) + NDK_ABI_LIST=(armeabi armeabi-v7a x86) fi