20 lines
No EOL
343 B
Kotlin
20 lines
No EOL
343 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.core.navigation"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// region DI
|
|
implementation(deps.hilt.android)
|
|
// endregion
|
|
|
|
// region AndroidX
|
|
implementation(deps.androidx.core)
|
|
// endregion
|
|
} |