39 lines
901 B
Groovy
39 lines
901 B
Groovy
apply from: "../android-configs/lib-config.gradle"
|
|
|
|
dependencies {
|
|
implementation project(":utils")
|
|
implementation project(":logging")
|
|
|
|
implementation "androidx.core:core"
|
|
implementation "androidx.annotation:annotation"
|
|
|
|
implementation "io.reactivex.rxjava2:rxjava"
|
|
implementation "io.reactivex.rxjava2:rxandroid"
|
|
|
|
constraints {
|
|
implementation("androidx.core:core") {
|
|
version {
|
|
require '1.0.0'
|
|
}
|
|
}
|
|
|
|
implementation("androidx.annotation:annotation") {
|
|
version {
|
|
require '1.0.0'
|
|
}
|
|
}
|
|
|
|
implementation("io.reactivex.rxjava2:rxjava") {
|
|
version {
|
|
require '2.2.6'
|
|
}
|
|
}
|
|
|
|
implementation("io.reactivex.rxjava2:rxandroid") {
|
|
version {
|
|
require '2.1.1'
|
|
}
|
|
}
|
|
}
|
|
}
|