tangem-app-android-audited/features/polymarket/impl/build.gradle.kts
2026-07-15 15:12:40 +03:00

32 lines
No EOL
753 B
Kotlin

plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
alias(deps.plugins.kotlin.kapt)
alias(deps.plugins.hilt.android)
id("configuration")
}
android {
namespace = "com.tangem.features.polymarket.impl"
}
dependencies {
/** Feature */
implementation(projects.features.polymarket.api)
/** Core */
implementation(projects.core.configToggles)
implementation(projects.core.decompose)
implementation(projects.core.ui)
/** Compose */
implementation(deps.compose.foundation)
implementation(deps.compose.runtime)
implementation(deps.compose.material3)
implementation(deps.compose.ui)
/** DI */
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
}