Skip to content

Commit

Permalink
fix: ksp build error
Browse files Browse the repository at this point in the history
  • Loading branch information
cdhiraj40 committed Nov 30, 2023
1 parent 3cad475 commit 4d746eb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ plugins {
id("com.android.library") version "8.1.1" apply false
id("com.google.gms.google-services") version "4.3.8" apply false
id("org.jetbrains.kotlin.plugin.serialization") version "1.8.0"
id("com.google.devtools.ksp") version "1.8.10-1.0.9" apply false
}
1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,4 @@ dependencyResolutionManagement {
}

rootProject.name = "solwave"
include(":sample")
include(":solwave")
4 changes: 2 additions & 2 deletions solwave/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id("maven-publish")
id("com.android.library")
id("org.jetbrains.kotlin.android")
id("com.google.devtools.ksp")
kotlin("kapt")
id("kotlinx-serialization")
}

Expand Down Expand Up @@ -86,7 +86,7 @@ dependencies {

// Room
implementation("androidx.room:room-runtime:2.6.0")
ksp("androidx.room:room-compiler:2.6.0")
kapt("androidx.room:room-compiler:2.6.0")
implementation("androidx.room:room-ktx:2.6.0")

// gson
Expand Down

0 comments on commit 4d746eb

Please sign in to comment.