26 lines
No EOL
522 B
Kotlin
26 lines
No EOL
522 B
Kotlin
plugins {
|
|
alias(deps.plugins.android.library)
|
|
alias(deps.plugins.kotlin.android)
|
|
id("configuration")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.tangem.core.res"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// region AndroidX
|
|
api(deps.androidx.annotation)
|
|
// endregion
|
|
|
|
// region Firebase
|
|
implementation(platform(deps.firebase.bom))
|
|
implementation(deps.firebase.analytics)
|
|
implementation(deps.firebase.crashlytics)
|
|
// endregion
|
|
|
|
// region Core modules
|
|
implementation(projects.core.utils)
|
|
// endregion
|
|
} |