Compare commits

..
2 Commits
Author SHA1 Message Date
budtmo b9f02023b4 Added Android 14 in pipeline 2024-01-04 11:59:34 +01:00
budtmo cabad42452 Added Android 14 2024-01-04 11:50:50 +01:00
4 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ jobs:
needs: release_base
strategy:
matrix:
android: ["9.0", "10.0", "11.0", "12.0", "13.0"]
android: ["9.0", "10.0", "11.0", "12.0", "13.0", "14.0"]
steps:
- name: Checkout the repo
uses: actions/checkout@v4
+1
View File
@@ -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
+2 -1
View File
@@ -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
+2 -1
View File
@@ -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