28 lines
No EOL
592 B
Kotlin
28 lines
No EOL
592 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.common"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(projects.core.utils)
|
|
|
|
// region Firebase libraries
|
|
implementation(platform(deps.firebase.bom))
|
|
implementation(deps.firebase.analytics)
|
|
implementation(deps.firebase.crashlytics)
|
|
implementation(deps.firebase.messaging)
|
|
// end
|
|
|
|
implementation(deps.timber)
|
|
|
|
implementation(deps.arrow.core)
|
|
|
|
implementation(deps.test.junit)
|
|
implementation(deps.test.truth)
|
|
} |