chore: bump dependencies

This commit is contained in:
Cilly Leang 2025-11-22 16:36:13 +11:00
parent 7ead4b4634
commit 74e3278012
Signed by: cilly
GPG key ID: 6500251E087653C9
4 changed files with 23 additions and 17 deletions

View file

@ -13,10 +13,6 @@ room {
schemaDirectory("$projectDir/schemas")
}
dependencies {
ksp(libs.room.compiler)
}
kotlin {
androidTarget {
@OptIn(ExperimentalKotlinGradlePluginApi::class)
@ -59,6 +55,14 @@ kotlin {
}
}
dependencies {
add("kspAndroid", libs.room.compiler)
add("kspIosX64", libs.room.compiler)
add("kspIosArm64", libs.room.compiler)
add("kspIosSimulatorArm64", libs.room.compiler)
add("kspJvm", libs.room.compiler)
}
android {
namespace = "moe.lava.banksia.shared"
compileSdk = libs.versions.android.compileSdk.get().toInt()