mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 04:27:02 +05:30
12 lines
398 B
Groovy
12 lines
398 B
Groovy
plugins {
|
|
id 'kotlin-kapt'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":model")
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
api "androidx.room:room-runtime:$room_version"
|
|
implementation "androidx.room:room-ktx:$room_version"
|
|
implementation "com.squareup.moshi:moshi:$moshi_version"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
|
|
}
|