tangem-app-android-audited/features/address-book/api/build.gradle.kts
2026-07-03 14:58:04 +03:00

31 lines
No EOL
610 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.addressbook.api"
}
dependencies {
// region Kotlin
api(deps.kotlin.coroutines)
api(deps.kotlin.immutable.collections)
// endregion
// region Project - Common
api(projects.common.routing)
api(projects.common.ui)
// endregion
// region Project - Core
api(projects.core.decompose)
api(projects.core.ui)
// endregion
// region Project - Domain
api(projects.domain.models)
// endregion
}