Skip to content

Commit ec63ec1

Browse files
committed
Add minorApiLevel for compile SDK. Test with API 37.0.
1 parent ed6254c commit ec63ec1

2 files changed

Lines changed: 16 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,23 @@ jobs:
3535
api-level: 34
3636
target: aosp_atd
3737
arch: x86_64
38+
- os: ubuntu-latest
39+
api-level: 34-ext10
40+
target: android-automotive
41+
arch: x86_64
42+
system-image-api-level: 34-ext9
3843
- os: ubuntu-latest
3944
api-level: 35
4045
target: google_apis
4146
arch: x86_64
4247
- os: ubuntu-latest
43-
api-level: 34-ext10
44-
target: android-automotive
48+
api-level: 37.0
49+
target: google_apis_playstore_ps16k
50+
arch: x86_64
51+
- os: ubuntu-latest
52+
api-level: 37.0
53+
target: google_apis_ps16k
4554
arch: x86_64
46-
system-image-api-level: 34-ext9
4755

4856
steps:
4957
- name: checkout

test-fixture/app/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ plugins {
44

55
android {
66
namespace = "com.example.testapp"
7-
compileSdk = 37
7+
compileSdk {
8+
version = release(37) {
9+
minorApiLevel = 0
10+
}
11+
}
812
buildToolsVersion = "37.0.0"
913

1014
defaultConfig {

0 commit comments

Comments
 (0)