22 lines
526 B
Groovy
22 lines
526 B
Groovy
apply from: "../android-configs/lib-config.gradle"
|
|
|
|
dependencies {
|
|
implementation "androidx.recyclerview:recyclerview"
|
|
implementation "androidx.fragment:fragment-ktx"
|
|
implementation project(path: ':logging')
|
|
|
|
constraints {
|
|
implementation("androidx.recyclerview:recyclerview") {
|
|
version {
|
|
require '1.0.0'
|
|
}
|
|
}
|
|
|
|
implementation("androidx.fragment:fragment-ktx") {
|
|
version {
|
|
require '1.2.1'
|
|
}
|
|
}
|
|
}
|
|
}
|