34 lines
No EOL
733 B
Kotlin
34 lines
No EOL
733 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
alias(deps.plugins.kotlin.kapt)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.core.deeplink"
|
|
}
|
|
|
|
dependencies {
|
|
/* Common */
|
|
implementation(projects.common.routing)
|
|
|
|
/* Core */
|
|
implementation(projects.core.decompose)
|
|
|
|
/* Libs - AndroidX */
|
|
implementation(deps.lifecycle.runtime.ktx)
|
|
|
|
/* Libs - Other */
|
|
implementation(deps.timber)
|
|
|
|
/* DI */
|
|
implementation(deps.hilt.android)
|
|
kapt(deps.hilt.kapt)
|
|
|
|
/* Tests */
|
|
testImplementation(deps.test.junit)
|
|
testImplementation(deps.test.coroutine)
|
|
testImplementation(deps.test.truth)
|
|
testImplementation(deps.test.mockk)
|
|
} |