22 lines
No EOL
446 B
Kotlin
22 lines
No EOL
446 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.core.res"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(projects.core.utils)
|
|
|
|
implementation(deps.timber)
|
|
|
|
// region Firebase libraries
|
|
implementation(platform(deps.firebase.bom))
|
|
implementation(deps.firebase.analytics)
|
|
implementation(deps.firebase.crashlytics)
|
|
// endregion
|
|
} |