From 4049347b21ddd94762ea1b05993f3acbb3ae9c40 Mon Sep 17 00:00:00 2001 From: Yuri Schimke Date: Tue, 16 Jun 2026 10:35:18 +0100 Subject: [PATCH 1/3] Test with API 37.0 --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a94c1038..25abd63f5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,6 +39,10 @@ jobs: api-level: 35 target: google_apis arch: x86_64 + - os: ubuntu-latest + api-level: 37.0 + target: google_apis_playstore_ps16k + arch: x86_64 - os: ubuntu-latest api-level: 34-ext10 target: android-automotive From 8235a0147070a975495cf0660a785eee919dab4c Mon Sep 17 00:00:00 2001 From: Yuri Schimke Date: Tue, 16 Jun 2026 11:01:13 +0100 Subject: [PATCH 2/3] Add additional targets for Ubuntu in workflow --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 25abd63f5..931377c4a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,6 +43,14 @@ jobs: api-level: 37.0 target: google_apis_playstore_ps16k arch: x86_64 + - os: ubuntu-latest + api-level: 37.0 + target: google_apis_ps16k + arch: x86_64 + - os: ubuntu-latest + api-level: 37.0 + target: playstore_ps16k + arch: x86_64 - os: ubuntu-latest api-level: 34-ext10 target: android-automotive From 04866b6e9754a5e849a106aa78c529f7ddad1414 Mon Sep 17 00:00:00 2001 From: Yuri Schimke Date: Tue, 16 Jun 2026 14:41:13 +0100 Subject: [PATCH 3/3] Update api-level values to string format Changed api-level values to be string literals. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 931377c4a..d3e13bfb8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,15 +40,15 @@ jobs: target: google_apis arch: x86_64 - os: ubuntu-latest - api-level: 37.0 + api-level: "37.0" target: google_apis_playstore_ps16k arch: x86_64 - os: ubuntu-latest - api-level: 37.0 + api-level: "37.0" target: google_apis_ps16k arch: x86_64 - os: ubuntu-latest - api-level: 37.0 + api-level: "37.0" target: playstore_ps16k arch: x86_64 - os: ubuntu-latest