Skip to content

Commit

Permalink
Added Android 14
Browse files Browse the repository at this point in the history
  • Loading branch information
budtmo committed Jan 4, 2024
1 parent deb9180 commit cabad42
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ List of Docker-Images
|11.0|30|budtmo/docker-android:emulator_11.0|budtmo/docker-android:emulator_11.0_<release_version>|
|12.0|32|budtmo/docker-android:emulator_12.0|budtmo/docker-android:emulator_12.0_<release_version>|
|13.0|33|budtmo/docker-android:emulator_13.0|budtmo/docker-android:emulator_13.0_<release_version>|
|14.0|34|budtmo/docker-android:emulator_14.0|budtmo/docker-android:emulator_14.0_<release_version>|
|-|-|budtmo/docker-android:genymotion|budtmo/docker-android:genymotion_<release_version>|

List of Devices
Expand Down
3 changes: 2 additions & 1 deletion app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion cli/src/device/emulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cabad42

Please sign in to comment.