Android: fix default name of the CI emulator

This name was changed in qt5/coin but wasn't reflected here. Currently,
things works correctly because the test target provide the correct name
as an env var.

Pick-to: 6.2 6.3
Change-Id: I8968285de2c7759d16f303c48d6295295dffbef6
Reviewed-by: Simo Fält <simo.falt@qt.io>
This commit is contained in:
Assam Boudjelthia 2022-04-28 17:00:00 +03:00
parent 1e938c348b
commit 53604df833

View File

@ -12,7 +12,7 @@ EMULATOR_EXEC="$ANDROID_SDK_ROOT/emulator/emulator"
ADB_EXEC="$ANDROID_SDK_ROOT/platform-tools/adb"
if [ -z "${ANDROID_EMULATOR}" ]
then
EMULATOR_NAME="@x86emulator"
EMULATOR_NAME="@emulator_x86_api_23"
else
EMULATOR_NAME="$ANDROID_EMULATOR"
fi