From f2663559fff5ea5f57508a6b98a035f3fcfb285b Mon Sep 17 00:00:00 2001 From: Juraj Begovac Date: Fri, 29 Dec 2017 21:56:41 +0100 Subject: [PATCH] [Fix] Fix dependencies --- rxfeedback/build.gradle | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/rxfeedback/build.gradle b/rxfeedback/build.gradle index 2dcebb5..3d7f06b 100644 --- a/rxfeedback/build.gradle +++ b/rxfeedback/build.gradle @@ -33,14 +33,16 @@ android { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" implementation 'com.android.support:appcompat-v7:26.1.0' - testImplementation 'junit:junit:4.12' - androidTestImplementation 'com.android.support.test:runner:1.0.1' - androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' + implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version" implementation 'io.reactivex.rxjava2:rxjava:2.1.6' implementation 'io.reactivex.rxjava2:rxandroid:2.0.1' - implementation project(':rxtestutils') - implementation 'org.notests:SharedSequence:0.1.4' + implementation 'org.notests:SharedSequence:0.1.5' + + testImplementation project(':rxtestutils') + testImplementation 'junit:junit:4.12' + + androidTestImplementation 'com.android.support.test:runner:1.0.1' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' }