31 lines
No EOL
965 B
Groovy
31 lines
No EOL
965 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
implementation implementation(project(path: ':common'))
|
|
|
|
// Tangem sdk's
|
|
implementation "com.tangem.tangem-sdk-kotlin:core:${versions.tamgem_card_sdk}"
|
|
|
|
// Kotlin coroutines
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2'
|
|
|
|
// Logs
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
|
|
// Network
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.3"))
|
|
implementation("com.squareup.okhttp3:okhttp")
|
|
implementation("com.squareup.okhttp3:logging-interceptor")
|
|
implementation 'com.squareup.retrofit2:retrofit:2.8.1'
|
|
implementation 'com.squareup.retrofit2:converter-moshi:2.6.0'
|
|
implementation 'com.squareup.moshi:moshi:1.13.0'
|
|
implementation "com.squareup.moshi:moshi-kotlin:1.13.0"
|
|
} |