tangem-app-android-audited/features/wallet/api/build.gradle.kts
2025-07-22 12:34:50 +03:00

25 lines
No EOL
542 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.wallet.api"
}
dependencies {
/** AndroidX */
implementation(deps.androidx.fragment.ktx)
/** Project - Domain */
implementation(projects.domain.models)
/** Core */
implementation(projects.core.ui)
implementation(projects.core.decompose)
implementation(projects.common.ui)
/** Other */
implementation(deps.kotlin.immutable.collections)
}