jshvarts / ConductorMVP

Multi-project Clean Architecture MVP app in Kotlin using Conductor, Room, RxJava 2, Dagger 2 with custom scopes
Apache License 2.0
194 stars 30 forks source link

Doublme dependencies block #5

Open Deep21 opened 6 years ago

Deep21 commented 6 years ago

Hello, In the domain gradle file why do you have double dependencies block ? dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"

implementation libs.rxJava
implementation libs.rxAndroid
implementation libs.junit

}

and

dependencies { // RxJava and RxAndroid implementation libs.rxJava implementation libs.rxAndroid

// JUnit
testImplementation libs.junit

// Mockito Kotlin
testImplementation libs.mockitoKotlin

}

kazimdsaidul commented 2 years ago

Rx Android depends on rxjava. So he use both depandaney.