mirror of
https://github.com/budtmo/docker-android
synced 2024-11-21 22:54:36 +00:00
Added Android 14
This commit is contained in:
parent
deb9180bc7
commit
cabad42452
@ -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>|
|
|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>|
|
|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>|
|
|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>|
|
|-|-|budtmo/docker-android:genymotion|budtmo/docker-android:genymotion_<release_version>|
|
||||||
|
|
||||||
List of Devices
|
List of Devices
|
||||||
|
3
app.sh
3
app.sh
@ -48,13 +48,14 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${p}" == *"emulator"* ]]; then
|
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=(
|
declare -A api_levels=(
|
||||||
["9.0"]=28
|
["9.0"]=28
|
||||||
["10.0"]=29
|
["10.0"]=29
|
||||||
["11.0"]=30
|
["11.0"]=30
|
||||||
["12.0"]=32
|
["12.0"]=32
|
||||||
["13.0"]=33
|
["13.0"]=33
|
||||||
|
["14.0"]=34
|
||||||
)
|
)
|
||||||
|
|
||||||
# To get the last index
|
# To get the last index
|
||||||
|
@ -30,7 +30,8 @@ class Emulator(Device):
|
|||||||
"10.0": "29",
|
"10.0": "29",
|
||||||
"11.0": "30",
|
"11.0": "30",
|
||||||
"12.0": "32",
|
"12.0": "32",
|
||||||
"13.0": "33"
|
"13.0": "33",
|
||||||
|
"14.0": "34"
|
||||||
}
|
}
|
||||||
|
|
||||||
adb_name_id = 5554
|
adb_name_id = 5554
|
||||||
|
Loading…
Reference in New Issue
Block a user