モケラ

Tech Sheets

mokelab

Android Jetpack - Room

最終更新日:2020-07-10

Roomとは、SQLiteDataベースに対する操作を簡単にしてくれるライブラリです。すでに既存のアプリでSQLiteDatabaseを使用している場合でも、Roomは使用することができます。

dependencies {
    implementation 'androidx.room:room-runtime:2.2.5'
    implementation 'androidx.room:room-ktx:2.2.5'
    kapt 'androidx.room:room-compiler:2.2.5'
}

一覧に戻る