11 lines
313 B
Groovy
11 lines
313 B
Groovy
android {
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
}
|
|
dependencies {
|
|
implementation project(path: ':viewbinding')
|
|
implementation "com.google.android.material:material:$material"
|
|
implementation "androidx.core:core-ktx:$coreKTX"
|
|
implementation "androidx.fragment:fragment-ktx:$fragment"
|
|
} |