27 lines
547 B
Groovy
27 lines
547 B
Groovy
apply from: "../android-configs/lib-config.gradle"
|
|
apply plugin: 'kotlin-android'
|
|
|
|
dependencies {
|
|
implementation project(":navigation-base")
|
|
|
|
implementation 'androidx.core:core-ktx'
|
|
implementation 'com.google.android.material:material'
|
|
|
|
implementation("androidx.core:core-ktx") {
|
|
version {
|
|
require '1.9.0'
|
|
}
|
|
}
|
|
implementation("com.google.android.material:material") {
|
|
version {
|
|
require '1.4.0'
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|