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(libs.androidx.room.runtime)
ksp(libs.androidx.room.compiler)
implementation(libs.androidx.room.ktx)
}