dependencies {
def room_version = "2.2.5"
implementation "androidx.room:room-runtime:$room_version"
}
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
allprojects {
repositories {
google()
jcenter()
...
}
}