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 <deathbaba@gmail.com>2012-06-09 23:34:42 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:39:34 +0300
commitd146cfebf68477f43b74894d64ebcb6fa09b4dcc (patch)
treece5edc5440fcecd368b9341a5533c110af692e24
parent923df9cc2aaeff8c4e00c772ac0e0f49c8ca1e8e (diff)
[android] Added mips ABI support for cheap android tablets
-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 1007016b37..406d4030ea 100644
--- a/android/jni/Application.mk
+++ b/android/jni/Application.mk
@@ -1,5 +1,5 @@
APP_PLATFORM := android-5
-APP_ABI := armeabi armeabi-v7a
+APP_ABI := armeabi armeabi-v7a mips
APP_STL := gnustl_static
LOCAL_PATH := $(call my-dir)
APP_CFLAGS += -I$(LOCAL_PATH)/../../3party/boost
diff --git a/tools/autobuild/android.sh b/tools/autobuild/android.sh
index 9c72a4504e..5a6d614d4a 100644
--- a/tools/autobuild/android.sh
+++ b/tools/autobuild/android.sh
@@ -22,7 +22,7 @@ SHADOW_DIR_BASE="$LOCAL_DIRNAME/../../../omim-android"
export NDK_ROOT=$(GetNdkRoot) || ( echo "Can't read NDK root path from android/local.properties"; exit 1 )
export NDK_HOST=$(GetNdkHost) || ( echo "Can't get your OS type, please check tools/autobuild/ndk_helper.sh script"; exit 1 )
-NDK_ABI_TO_BUILD=(armeabi armeabi-v7a)
+NDK_ABI_TO_BUILD=(armeabi armeabi-v7a mips)
for abi in "${NDK_ABI_TO_BUILD[@]}"; do
SHADOW_DIR="${SHADOW_DIR_BASE}-${CONFIGURATION}-${abi}"