Skip to content

Commit e5ba7ee

Browse files
committed
fix(build): replace deprecated calls in gradle file
1 parent 2a2c3ca commit e5ba7ee

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

composeApp/build.gradle.kts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,8 @@ kotlin {
2020
commonWebpackConfig {
2121
outputFileName = "composeApp.js"
2222
devServer = (devServer ?: KotlinWebpackConfig.DevServer()).apply {
23-
static = (static ?: mutableListOf()).apply {
24-
// Serve sources to debug inside browser
25-
add(rootDirPath)
26-
add(projectDirPath)
27-
}
23+
static(rootDirPath)
24+
static(projectDirPath)
2825
}
2926
}
3027
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
androidx-lifecycle = "2.9.6"
33
coil3 = "3.3.0"
4-
composeMultiplatform = "1.10.0-rc01"
4+
composeMultiplatform = "1.10.0-alpha03"
55
haze = "1.7.1"
66
kotlin = "2.2.21"
77
ksp = "2.3.3"

0 commit comments

Comments
 (0)