30 lines
750 B
Groovy
30 lines
750 B
Groovy
apply from: "../android-configs/lib-config.gradle"
|
|
|
|
dependencies {
|
|
implementation project(":navigation-base")
|
|
|
|
implementation "androidx.recyclerview:recyclerview"
|
|
implementation "androidx.constraintlayout:constraintlayout"
|
|
implementation "androidx.fragment:fragment-ktx"
|
|
|
|
constraints {
|
|
implementation("androidx.recyclerview:recyclerview") {
|
|
version {
|
|
require '1.1.0'
|
|
}
|
|
}
|
|
|
|
implementation("androidx.constraintlayout:constraintlayout"){
|
|
version {
|
|
require '2.2.0-alpha03'
|
|
}
|
|
}
|
|
|
|
implementation("androidx.fragment:fragment-ktx") {
|
|
version {
|
|
require '1.2.1'
|
|
}
|
|
}
|
|
}
|
|
}
|