From 5b694c2c55003f4cadc63b4ea4eb963b5bb43600 Mon Sep 17 00:00:00 2001 From: butomo1989 Date: Fri, 9 Jun 2017 11:59:07 +0200 Subject: [PATCH] Fixed issue #13 regarding arm image for 6.0 --- release.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/release.sh b/release.sh index bb49749..79464ca 100755 --- a/release.sh +++ b/release.sh @@ -163,9 +163,13 @@ function build() { for v in "${versions[@]}"; do # Find image type and default web browser - if [ "$v" == "5.0.1" ] || [ "$v" == "5.1.1" ] || [ "$v" == "6.0" ]; then + if [ "$v" == "5.0.1" ] || [ "$v" == "5.1.1" ]; then IMG_TYPE=android BROWSER=browser + elif [ "$v" == "6.0" ]; then + # It is because there is no ARM EABI v7a System Image for 6.0 + IMG_TYPE=google_apis + BROWSER=browser else IMG_TYPE=google_apis BROWSER=chrome