Skip to content

Commit 3d41256

Browse files
committed
BUILD Added ksp library dependency
1 parent 041d722 commit 3d41256

5 files changed

Lines changed: 9 additions & 4 deletions

File tree

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
@file:Suppress("UnstableApiUsage")
2-
31
plugins {
42
id("com.android.application")
53
id("org.jetbrains.kotlin.android")
4+
id("com.google.devtools.ksp")
65
}
76

87
android {
@@ -63,6 +62,11 @@ dependencies {
6362
implementation("androidx.compose.ui:ui-tooling-preview")
6463
implementation("androidx.compose.material3:material3")
6564

65+
// RoomDB
66+
implementation("androidx.room:room-ktx:2.5.2")
67+
implementation("androidx.room:room-runtime:2.5.2")
68+
ksp("androidx.room:room-compiler:2.5.2")
69+
6670
// Testing
6771
testImplementation("junit:junit:4.13.2")
6872
androidTestImplementation("androidx.test.ext:junit:1.1.5")

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ plugins {
33
id("com.android.application") version "8.0.2" apply false
44
id("com.android.library") version "8.0.2" apply false
55
id("org.jetbrains.kotlin.android") version "1.7.20" apply false
6+
id("com.google.devtools.ksp") version "1.8.10-1.0.9" apply false
67
}

0 commit comments

Comments
 (0)