tangem-app-android-audited/features/address-book/api/build.gradle.kts
2026-06-19 12:18:58 +03:00

25 lines
No EOL
498 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.addressbook.api"
}
dependencies {
/* Project - Common */
api(projects.common.routing)
/* Project - Domain */
implementation(projects.domain.models)
/* Project - Core */
implementation(projects.core.decompose)
implementation(projects.core.ui)
/* Compose */
implementation(deps.compose.runtime)
}