Skip to content

Commit

Permalink
Merge pull request #1020 from StefMa/feature/update_deps
Browse files Browse the repository at this point in the history
Update RxJava dependency / simplify support update
  • Loading branch information
Meisolsson committed Oct 1, 2016
2 parents d34a2cd + e045ff5 commit af04a3d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions app/build.gradle
Expand Up @@ -101,18 +101,20 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:design:23.4.0'

def supportVersion = '23.4.0'
compile "com.android.support:appcompat-v7:$supportVersion"
compile "com.android.support:support-v4:$supportVersion"
compile "com.android.support:design:$supportVersion"

compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp:okhttp:2.7.0'
compile 'com.squareup.okio:okio:1.6.0'
compile 'com.squareup.retrofit:retrofit:1.9.0'

compile 'com.github.alorma:github-sdk:3.2.5'
compile 'io.reactivex:rxandroid:1.1.0'
compile 'io.reactivex:rxjava:1.1.0'
compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.2.0'
compile 'com.trello:rxlifecycle:0.4.0'
compile 'com.bugsnag:bugsnag-android:3.2.7'

Expand Down

0 comments on commit af04a3d

Please sign in to comment.