17 lines
372 B
Groovy
17 lines
372 B
Groovy
apply from: "../android-configs/lib-config.gradle"
|
|
|
|
dependencies {
|
|
implementation project(":utils")
|
|
implementation project(":logging")
|
|
|
|
implementation "com.google.android.material:material"
|
|
|
|
constraints {
|
|
implementation("com.google.android.material:material") {
|
|
version {
|
|
require '1.0.0'
|
|
}
|
|
}
|
|
}
|
|
}
|