Skip to content

Commit

Permalink
chore(actions): e2e android tests to run on android API 34
Browse files Browse the repository at this point in the history
  • Loading branch information
Nika Hassani committed Aug 7, 2024
1 parent ff0e634 commit 794d98d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
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
14 changes: 7 additions & 7 deletions .github/composite_actions/launch_android_emulator/dist/main.cjs

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

0 comments on commit 794d98d

Please sign in to comment.