tangem-app-android-audited/domain/feedback/build.gradle.kts
2025-06-09 12:42:30 +03:00

20 lines
No EOL
493 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.domain.feedback"
}
dependencies {
implementation(deps.arrow.core)
implementation(deps.jodatime)
implementation(projects.core.res)
implementation(projects.domain.models)
implementation(projects.domain.wallets.models)
implementation(projects.domain.visa.models)
implementation(projects.domain.feedback.models)
}