[Android] Update integration test AVD dependency to use Android 35 emulators (#152498)

Updates AVD dependency to use [latest available AVD dependency](https://chrome-infra-packages.appspot.com/p/chromium/tools/android/avd/linux-amd64/+/I7SIawD0okHpiEe8fKvI5NQrMEWDibsvOduVbbK5pDEC) (actually I'm one behind by the time of publishing--I assume this is ok) so that engine integration tests run on emulators running Android 35, the current latest version of Android.

Updated docs to reflect this is the new way to update this dependency in https://github.com/flutter/flutter/pull/152503.

Kinda part of https://github.com/flutter/flutter/issues/150215 (the original instructions anyway).
This commit is contained in:
Camille Simon 2024-07-31 13:44:56 -07:00 committed by GitHub
parent 70bda95422
commit c3fbf3dd98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,10 @@ platform_properties:
device_type: none device_type: none
# The current android emulator config names can be found here: # The current android emulator config names can be found here:
# https://chromium.googlesource.com/chromium/src.git/+/HEAD/tools/android/avd/proto # https://chromium.googlesource.com/chromium/src.git/+/HEAD/tools/android/avd/proto
# You may use those names for the android_virtual_device version. # You may use those names for the android_virtual_device version. You may find the
# avd_cipd_version by clicking on the latest available instance and looking for the
# build_id:<Identifier#> here:
# https://chrome-infra-packages.appspot.com/p/chromium/tools/android/avd/linux-amd64.
linux_android_emu: linux_android_emu:
properties: properties:
contexts: >- contexts: >-
@ -47,8 +50,8 @@ platform_properties:
dependencies: >- dependencies: >-
[ [
{"dependency": "android_sdk", "version": "version:34v3"}, {"dependency": "android_sdk", "version": "version:34v3"},
{"dependency": "android_virtual_device", "version": "android_34_google_apis_x64.textpb"}, {"dependency": "android_virtual_device", "version": "android_35_google_apis_x64.textpb"},
{"dependency": "avd_cipd_version", "version": "build_id:8759428741582061553"}, {"dependency": "avd_cipd_version", "version": "build_id:8741513191637853009"},
{"dependency": "open_jdk", "version": "version:17"} {"dependency": "open_jdk", "version": "version:17"}
] ]
os: Ubuntu os: Ubuntu