Skip to content

Get Started

Configuration

  • In your app build.gradle inside dependencies, add this line:

    build.gradle
    plugin {
      id("com.android.application")
      id("org.jetbrains.kotlin.android")
      id("com.google.devtools.ksp") version "1.7.0-1.0.6"
    }
    
    dependencies {
        ... 
        ksp "androidx.room:room-compiler:2.4.2"
    }
    

  • Gradle sync to apply the changes!