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:
authorvng <viktor.govako@gmail.com>2016-08-09 15:09:26 +0300
committeralexzatsepin <az@mapswithme.com>2017-02-14 15:47:26 +0300
commit57ab411abd42f5be6fb3689a62b82bd46d3468b1 (patch)
treef24c74bfb6510c541391ca16a25ee2c930c78dd7 /tools/autobuild
parent1c7b0ae8d7e324a6f14a7840aabad261a2a577f5 (diff)
[android] Migrate to android-ndk-12x
Diffstat (limited to 'tools/autobuild')
-rwxr-xr-xtools/autobuild/android.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/autobuild/android.sh b/tools/autobuild/android.sh
index b5a61c2157..377f3d3af3 100755
--- a/tools/autobuild/android.sh
+++ b/tools/autobuild/android.sh
@@ -6,7 +6,7 @@ MY_PATH="`dirname \"$0\"`" # relative
MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized
if [[ $# < 1 ]]; then
- echo "Usage: $0 <debug|release|production> [armeabi-v7a-hard|x86] [android-PLATFORM_NUMBER]"
+ echo "Usage: $0 <debug|release|production> [armeabi-v7a|x86] [android-PLATFORM_NUMBER]"
exit 1
fi
CONFIGURATION="$1"
@@ -28,7 +28,7 @@ fi
if [[ $# > 1 ]] ; then
NDK_ABI_LIST=$2
else
- NDK_ABI_LIST=(armeabi-v7a-hard x86)
+ NDK_ABI_LIST=(armeabi-v7a x86)
fi