mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 23:47:02 +05:30
17 lines
574 B
Groovy
17 lines
574 B
Groovy
plugins {
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
}
|
|
|
|
dependencies {
|
|
def moshi_version = "1.9.3"
|
|
def retrofit_version = "2.9.0"
|
|
implementation project(":model")
|
|
api "com.squareup.retrofit2:retrofit:$retrofit_version"
|
|
implementation "com.squareup.retrofit2:converter-moshi:$retrofit_version"
|
|
kaptTest "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
|
|
testImplementation 'junit:junit:4.13'
|
|
// retrofit uses 3.14.9, so shall we.
|
|
//noinspection GradleDependency
|
|
testImplementation "com.squareup.okhttp3:mockwebserver:3.14.9"
|
|
}
|