Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@mapswithme.com>2013-10-04 15:23:13 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:03:18 +0300
commit25f18db787f6f8eab40e102ae6b3441308d27ecb (patch)
tree0d2a5c085dbeff5662207f06962578d4d2674ad7
parent9a237325ccf06ea6e49b305eb82604a5aee67f68 (diff)
[android] Removed mips platform support as it's not popular on the markets
-rw-r--r--android/jni/Application.mk2
-rw-r--r--tools/autobuild/android.sh2
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