tangem-app-android-audited/domain/feedback/build.gradle.kts
2024-05-21 22:41:21 +08:00

17 lines
No EOL
350 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.wallets.models)
}