compose-lobsters/data/build.gradle
Harsh Shandilya cec0e1bbcb
gradle: reformat all build files with 2SI
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-10-29 16:38:01 +05:30

12 lines
384 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"
}