From c3fbf3dd98f91f46cbc4a5d649209aeaff72576c Mon Sep 17 00:00:00 2001 From: Camille Simon <43054281+camsim99@users.noreply.github.com> Date: Wed, 31 Jul 2024 13:44:56 -0700 Subject: [PATCH] [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). --- .ci.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.ci.yaml b/.ci.yaml index d8b8ce5509..e4a5b414e9 100644 --- a/.ci.yaml +++ b/.ci.yaml @@ -37,7 +37,10 @@ platform_properties: device_type: none # The current android emulator config names can be found here: # 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: here: + # https://chrome-infra-packages.appspot.com/p/chromium/tools/android/avd/linux-amd64. linux_android_emu: properties: contexts: >- @@ -47,8 +50,8 @@ platform_properties: dependencies: >- [ {"dependency": "android_sdk", "version": "version:34v3"}, - {"dependency": "android_virtual_device", "version": "android_34_google_apis_x64.textpb"}, - {"dependency": "avd_cipd_version", "version": "build_id:8759428741582061553"}, + {"dependency": "android_virtual_device", "version": "android_35_google_apis_x64.textpb"}, + {"dependency": "avd_cipd_version", "version": "build_id:8741513191637853009"}, {"dependency": "open_jdk", "version": "version:17"} ] os: Ubuntu