RoomDB導入
build.gradle(Project)
plugins {
// 2024年12月22現在
id("com.google.devtools.ksp") version "2.0.21-1.0.26" apply false
}
build.gradle(Module)
plugins {
id("com.google.devtools.ksp")
}
...
dependencies {
// Room
implementation("androidx.room:room-runtime:2.6.1")
ksp("androidx.room:room-compiler:2.6.1")
implementation("androidx.room:room-ktx:2.6.1")
}