From e96c7f5210c0a41e4cf727b9d8e4a8dfcba39d8f Mon Sep 17 00:00:00 2001 From: Karim Abou Zeid Date: Fri, 9 Jun 2017 22:07:10 +0200 Subject: [PATCH] Update libraries --- app/build.gradle | 21 ++++++++++++--------- build.gradle | 2 ++ 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 4b0a0fb0..726f0ca9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -17,7 +17,7 @@ apply plugin: 'com.jakewharton.hugo' repositories { maven { url 'https://maven.fabric.io/public' } - maven { url "https://jitpack.io" } + maven { name 'glide-snapshot' url 'http://oss.sonatype.org/content/repositories/snapshots' @@ -27,6 +27,9 @@ repositories { android { compileSdkVersion 25 buildToolsVersion '25.0.2' + dataBinding { + enabled = true + } defaultConfig { minSdkVersion 16 targetSdkVersion 25 @@ -63,7 +66,7 @@ android { } ext { - supportLibVersion = '25.3.1' + supportLibVersion = '25.4.0' } dependencies { @@ -74,7 +77,7 @@ dependencies { transitive = true } - compile('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.10.4@aar') { + compile('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.10.6@aar') { transitive = true } @@ -99,23 +102,23 @@ dependencies { compile "com.android.support:preference-v7:$supportLibVersion" compile "com.android.support:preference-v14:$supportLibVersion" - compile 'com.afollestad.material-dialogs:core:0.9.4.2@aar' - compile 'com.afollestad.material-dialogs:commons:0.9.4.2@aar' + compile 'com.afollestad.material-dialogs:core:0.9.4.3@aar' + compile 'com.afollestad.material-dialogs:commons:0.9.4.3@aar' compile 'com.afollestad:material-cab:0.1.12@aar' compile 'com.github.ksoichiro:android-observablescrollview:1.6.0' compile 'com.github.kabouzeid:SeekArc:1.2-kmod' compile 'com.github.kabouzeid:AndroidSlidingUpPanel:3.3.0-kmod3' - compile 'com.squareup.retrofit2:retrofit:2.2.0' - compile 'com.squareup.retrofit2:converter-gson:2.2.0' + compile 'com.squareup.retrofit2:retrofit:2.3.0' + compile 'com.squareup.retrofit2:converter-gson:2.3.0' //noinspection GradleDynamicVersion compile 'com.anjlab.android.iab.v3:library:1.0.+' compile 'de.psdev.licensesdialog:licensesdialog:1.8.1' compile 'com.github.bumptech.glide:glide:3.8.0-SNAPSHOT' compile 'com.github.bumptech.glide:okhttp3-integration:1.5.0-SNAPSHOT' compile 'com.github.kabouzeid:RecyclerView-FastScroll:1.9-kmod' - compile 'com.heinrichreimersoftware:material-intro:1.6' - compile 'me.zhanghai.android.materialprogressbar:library:1.3.0' + compile 'com.heinrichreimersoftware:material-intro:1.6.2' + compile 'me.zhanghai.android.materialprogressbar:library:1.4.1' compile 'org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5' compile 'com.jakewharton:butterknife:8.6.0' diff --git a/build.gradle b/build.gradle index 8ccd9c97..eedfcc82 100644 --- a/build.gradle +++ b/build.gradle @@ -10,5 +10,7 @@ buildscript { allprojects { repositories { jcenter() + maven { url "https://maven.google.com" } + maven { url "https://jitpack.io" } } }