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備忘録

Last updated at Posted at 2024-12-22

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")
}
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?