Room(SQLite) and Kotlin
The Room persistence library provides an abstraction layer over SQLite.
To use Room in your app, add the following dependencies to your app’s build.gradle file:
dependencies {
....
kapt "org.xerial:sqlite-jdbc:3.34.0"
// Room
def roo...
codefoundation.co.za4 min read