Added Android 10

This commit is contained in:
butomo1989 2019-09-17 14:51:02 +02:00
parent d8ac737d00
commit ee9c3e3635
3 changed files with 5 additions and 1 deletions

View file

@ -19,6 +19,7 @@ env:
- ANDROID_VERSION=8.0 - ANDROID_VERSION=8.0
- ANDROID_VERSION=8.1 - ANDROID_VERSION=8.1
- ANDROID_VERSION=9.0 - ANDROID_VERSION=9.0
- ANDROID_VERSION=10.0
- REAL_DEVICE=True - REAL_DEVICE=True
- GENYMOTION=True - GENYMOTION=True

View file

@ -51,6 +51,7 @@ List of Docker images
|Linux|8.0|26|chrome|58.0|2.31|budtmo/docker-android-x86-8.0|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-x86-8.0.svg)](https://microbadger.com/images/budtmo/docker-android-x86-8.0 "Get your own image badge on microbadger.com")| |Linux|8.0|26|chrome|58.0|2.31|budtmo/docker-android-x86-8.0|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-x86-8.0.svg)](https://microbadger.com/images/budtmo/docker-android-x86-8.0 "Get your own image badge on microbadger.com")|
|Linux|8.1|27|chrome|61.0|2.33|budtmo/docker-android-x86-8.1|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-x86-8.1.svg)](https://microbadger.com/images/budtmo/docker-android-x86-8.1 "Get your own image badge on microbadger.com")| |Linux|8.1|27|chrome|61.0|2.33|budtmo/docker-android-x86-8.1|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-x86-8.1.svg)](https://microbadger.com/images/budtmo/docker-android-x86-8.1 "Get your own image badge on microbadger.com")|
|Linux|9.0|28|chrome|66.0|2.40|budtmo/docker-android-x86-9.0|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-x86-9.0.svg)](https://microbadger.com/images/budtmo/docker-android-x86-9.0 "Get your own image badge on microbadger.com")| |Linux|9.0|28|chrome|66.0|2.40|budtmo/docker-android-x86-9.0|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-x86-9.0.svg)](https://microbadger.com/images/budtmo/docker-android-x86-9.0 "Get your own image badge on microbadger.com")|
|Linux|10.0|29|chrome|74.0|74.0.3729.6|budtmo/docker-android-x86-10.0|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-x86-10.0.svg)](https://microbadger.com/images/budtmo/docker-android-x86-10.0 "Get your own image badge on microbadger.com")|
|All |-|-|-|-|-|budtmo/docker-android-real-device|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-real-device.svg)](https://microbadger.com/images/budtmo/docker-android-real-device "Get your own image badge on microbadger.com")| |All |-|-|-|-|-|budtmo/docker-android-real-device|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-real-device.svg)](https://microbadger.com/images/budtmo/docker-android-real-device "Get your own image badge on microbadger.com")|
|All|All|All|All|All|All|budtmo/docker-android-genymotion|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-genymotion.svg)](https://microbadger.com/images/budtmo/docker-android-genymotion "Get your own image badge on microbadger.com")| |All|All|All|All|All|All|budtmo/docker-android-genymotion|[![](https://images.microbadger.com/badges/image/budtmo/docker-android-genymotion.svg)](https://microbadger.com/images/budtmo/docker-android-genymotion "Get your own image badge on microbadger.com")|

View file

@ -10,7 +10,7 @@ else
fi fi
if [ -z "$2" ]; then if [ -z "$2" ]; then
read -p "Android version (5.0.1|5.1.1|6.0|7.0|7.1.1|8.0|8.1|9.0|all): " ANDROID_VERSION read -p "Android version (5.0.1|5.1.1|6.0|7.0|7.1.1|8.0|8.1|9.0|10.0|all): " ANDROID_VERSION
else else
ANDROID_VERSION=$2 ANDROID_VERSION=$2
fi fi
@ -30,6 +30,7 @@ declare -A list_of_levels=(
[8.0]=26 [8.0]=26
[8.1]=27 [8.1]=27
[9.0]=28 [9.0]=28
[10.0]=29
) )
# The version of the Chrome browser installed on the Android emulator needs to be known beforehand # The version of the Chrome browser installed on the Android emulator needs to be known beforehand
@ -43,6 +44,7 @@ declare -A chromedriver_versions=(
[8.0]="2.31" [8.0]="2.31"
[8.1]="2.33" [8.1]="2.33"
[9.0]="2.40" [9.0]="2.40"
[10.0]="74.0.3729.6"
) )
function get_android_versions() { function get_android_versions() {