Android 11 build issue with 32-bit image

This commit is contained in:
Joel Whitney
2021-11-04 13:02:32 -04:00
parent 7b6bc3fe3e
commit d0f9534e3d
+3 -2
View File
@@ -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