Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(actions): e2e android tests to run with API 34 #5247

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Launches an Android emulator and caches it for further action runs
inputs:
api-level:
description: "API level of the platform and system image - e.g. 23 for Android Marshmallow, 29 for Android 10"
default: "33"
default: "34"
target:
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"
default: google_apis
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/e2e_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
matrix:
api-level:
- 24
- 33
- 34
channel:
- beta
- stable
Expand Down
2 changes: 1 addition & 1 deletion actions/bin/launch_android_emulator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Launches an Android emulator and caches it for further action runs
inputs:
api-level:
description: "API level of the platform and system image - e.g. 23 for Android Marshmallow, 29 for Android 10"
default: "33"
default: "34"
target:
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"
default: google_apis
Expand Down
4 changes: 2 additions & 2 deletions actions/lib/src/android/sdk_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class SdkManager {

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

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

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