Skip to content

Commit a01dc1b

Browse files
authored
chore(actions): e2e android tests to run with API 34 (#5247)
1 parent ff0e634 commit a01dc1b

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/composite_actions/launch_android_emulator/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Launches an Android emulator and caches it for further action runs
33
inputs:
44
api-level:
55
description: "API level of the platform and system image - e.g. 23 for Android Marshmallow, 29 for Android 10"
6-
default: "33"
6+
default: "34"
77
target:
88
description: "target of the system image - default, google_apis, google_apis_playstore, aosp_atd, google_atd, android-wear, android-wear-cn, android-tv or google-tv"
99
default: google_apis

.github/composite_actions/launch_android_emulator/dist/main.cjs

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/e2e_android.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
api-level:
2929
- 24
30-
- 33
30+
- 34
3131
channel:
3232
- beta
3333
- stable

actions/bin/launch_android_emulator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Launches an Android emulator and caches it for further action runs
33
inputs:
44
api-level:
55
description: "API level of the platform and system image - e.g. 23 for Android Marshmallow, 29 for Android 10"
6-
default: "33"
6+
default: "34"
77
target:
88
description: "target of the system image - default, google_apis, google_apis_playstore, aosp_atd, google_atd, android-wear, android-wear-cn, android-tv or google-tv"
99
default: google_apis

actions/lib/src/android/sdk_manager.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ final class SdkManager {
4242

4343
/// The current `compileSdk` used by the repo.
4444
// TODO(dnys1): Extract from aft.yaml?
45-
static const compileSdk = 33;
45+
static const compileSdk = 34;
4646

4747
/// The install directory for cmdline-tools.
4848
///
@@ -79,7 +79,7 @@ final class SdkManager {
7979
/// Latest version of the cmdline-tools
8080
///
8181
/// From: https://developer.android.com/studio#command-line-tools-only
82-
static const _latestCmdlineToolsVersion = '10406996';
82+
static const _latestCmdlineToolsVersion = '11076708';
8383

8484
/// Installs the latest version of cmdline-tools if not already available.
8585
Future<void> _ensureCmdlineTools() async =>

0 commit comments

Comments
 (0)