tangem-app-android-audited/data/push-notification-preferences/build.gradle.kts
2026-07-08 19:28:17 +03:00

46 lines
No EOL
1 KiB
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.data.pushnotificationpreferences"
}
dependencies {
// region Kotlin
implementation(deps.kotlin.coroutines)
// endregion
// region Other libraries
implementation(deps.arrow.core)
// endregion
// region DI
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
// endregion
// region Core
api(projects.core.datasource)
api(projects.core.utils)
// endregion
// region Domain
api(projects.domain.pushNotificationPreferences)
implementation(projects.domain.models)
// endregion
// region Tests
testImplementation(projects.test.core)
testImplementation(deps.test.coroutine)
testImplementation(deps.test.junit5)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
testImplementation(deps.test.turbine)
// endregion
}