From cabad4245268006517b6028896c720721b6c0dd7 Mon Sep 17 00:00:00 2001 From: budtmo Date: Thu, 4 Jan 2024 11:50:50 +0100 Subject: [PATCH] Added Android 14 --- README.md | 1 + app.sh | 3 ++- cli/src/device/emulator.py | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6aac6e60..b188ed3f 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ List of Docker-Images |11.0|30|budtmo/docker-android:emulator_11.0|budtmo/docker-android:emulator_11.0_| |12.0|32|budtmo/docker-android:emulator_12.0|budtmo/docker-android:emulator_12.0_| |13.0|33|budtmo/docker-android:emulator_13.0|budtmo/docker-android:emulator_13.0_| +|14.0|34|budtmo/docker-android:emulator_14.0|budtmo/docker-android:emulator_14.0_| |-|-|budtmo/docker-android:genymotion|budtmo/docker-android:genymotion_| List of Devices diff --git a/app.sh b/app.sh index f6c9fd6b..c4425ddf 100755 --- a/app.sh +++ b/app.sh @@ -48,13 +48,14 @@ else fi if [[ "${p}" == *"emulator"* ]]; then - supported_android_version=("9.0" "10.0" "11.0" "12.0" "13.0") + supported_android_version=("9.0" "10.0" "11.0" "12.0" "13.0" "14.0") declare -A api_levels=( ["9.0"]=28 ["10.0"]=29 ["11.0"]=30 ["12.0"]=32 ["13.0"]=33 + ["14.0"]=34 ) # To get the last index diff --git a/cli/src/device/emulator.py b/cli/src/device/emulator.py index d27e5762..b96529fe 100644 --- a/cli/src/device/emulator.py +++ b/cli/src/device/emulator.py @@ -30,7 +30,8 @@ class Emulator(Device): "10.0": "29", "11.0": "30", "12.0": "32", - "13.0": "33" + "13.0": "33", + "14.0": "34" } adb_name_id = 5554