tangem-app-android-audited/features/wallet-settings/api/build.gradle.kts
2024-06-23 23:36:32 +04:00

19 lines
No EOL
387 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.feature.walletsettings.api"
}
dependencies {
/* Project - Domain */
implementation(projects.domain.wallets.models)
/* Project - Core */
implementation(projects.core.decompose)
implementation(projects.core.ui)
}