mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 23:47:02 +05:30
17 lines
378 B
Groovy
17 lines
378 B
Groovy
plugins {
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
}
|
|
|
|
android {
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
api "androidx.room:room-runtime:$room_version"
|
|
api "androidx.room:room-ktx:$room_version"
|
|
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.0.10"
|
|
}
|