Skip to content

Commit

Permalink
[Fix] Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JurajBegovac committed Dec 29, 2017
1 parent a6adbd3 commit f266355
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions rxfeedback/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

0 comments on commit f266355

Please sign in to comment.