0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Android RoomDB備忘録

Posted at

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)
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?