mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 09:07:01 +05:30
lobsters-api: init
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
7bb1fd6947
commit
7489100c26
13 changed files with 183 additions and 0 deletions
19
lobsters-api/build.gradle
Normal file
19
lobsters-api/build.gradle
Normal file
|
@ -0,0 +1,19 @@
|
|||
plugins {
|
||||
id 'kotlin-android'
|
||||
id 'kotlin-kapt'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
def moshi_version = "1.9.3"
|
||||
def retrofit_version = "2.9.0"
|
||||
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
|
||||
implementation "com.squareup.moshi:moshi:$moshi_version"
|
||||
implementation "com.squareup.moshi:moshi-kotlin:$moshi_version"
|
||||
implementation "com.squareup.retrofit2:converter-moshi:$retrofit_version"
|
||||
implementation "com.squareup.retrofit2:retrofit:$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"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue