From d0f9534e3df0f82c870a813969f5b50dac8cb6c3 Mon Sep 17 00:00:00 2001 From: Joel Whitney Date: Thu, 4 Nov 2021 13:02:32 -0400 Subject: [PATCH] Android 11 build issue with 32-bit image --- release.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index ebc57ac..c7a89cd 100755 --- a/release.sh +++ b/release.sh @@ -153,8 +153,9 @@ function build() { #adb root cannot be run in IMG_TYPE=google_apis_playstore IMG_TYPE=google_apis BROWSER=chrome - # Google dropped 32-bit support at Android 12 - if [ "$v" == "9.0" ] || [ $level -ge 31 ]; then + # Android 9 & Android 11 had build issues that requires 64-bit + # Android 12+ Google dropped 32-bit support + if [ "$v" == "9.0" ] || [ $level -ge 30 ]; then processor=x86_64 fi fi