tangem-app-android-audited/core/navigation/build.gradle.kts
2026-07-02 17:19:33 +03:00

24 lines
No EOL
428 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.core.navigation"
}
dependencies {
// region Core modules
implementation(projects.core.utils)
// endregion
// region DI
implementation(deps.hilt.android)
// endregion
// region AndroidX
implementation(deps.androidx.core)
// endregion
}