Skip to content

Commit 1db4fb8

Browse files
committed
Bump compileSdk to 37 as required by FileKit 0.14.0
Platform 37 ships as minor-versioned android-37.0, which AGP 8.13.2 only resolves through the compileSdk { release(37) } DSL.
1 parent 32d332f commit 1db4fb8

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

audioplayer/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ kotlin {
9191

9292
android {
9393
namespace = "io.github.kdroidfilter.composemediaplayer.audio"
94-
compileSdk = 36
94+
compileSdk {
95+
version = release(37) {
96+
minorApiLevel = 0
97+
}
98+
}
9599

96100
defaultConfig {
97101
minSdk = libs.versions.android.minSdk.get().toInt()

mediaplayer/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,11 @@ kotlin {
144144

145145
android {
146146
namespace = "io.github.kdroidfilter.composemediaplayer"
147-
compileSdk = 36
147+
compileSdk {
148+
version = release(37) {
149+
minorApiLevel = 0
150+
}
151+
}
148152

149153
defaultConfig {
150154
minSdk =

sample/composeApp/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ kotlin {
9494

9595
android {
9696
namespace = "sample.app"
97-
compileSdk = 36
97+
compileSdk {
98+
version = release(37) {
99+
minorApiLevel = 0
100+
}
101+
}
98102

99103
defaultConfig {
100104
minSdk = libs.versions.android.minSdk.get().toInt()

0 commit comments

Comments
 (0)