From c41593e3b6daffc52854ffb8a324c6e49bfcdf8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Mart=C3=ADnez?= Date: Wed, 2 Mar 2016 23:09:36 -0300 Subject: [PATCH] Update material dialogs library to 0.8.5.6 and fixes #10 --- build.gradle | 16 ++++++---------- gradle.properties | 4 ++-- library/build.gradle | 4 +++- 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/build.gradle b/build.gradle index 497c645..8f321ab 100644 --- a/build.gradle +++ b/build.gradle @@ -1,27 +1,19 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. - buildscript { repositories { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:1.2.3' - - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files + classpath 'com.android.tools.build:gradle:1.5.0' } } -def isReleaseBuild() { - return version.contains("SNAPSHOT") == false -} - allprojects { version = VERSION_NAME group = GROUP repositories { jcenter() + maven { url "https://jitpack.io" } } ext { @@ -31,4 +23,8 @@ allprojects { } } +def isReleaseBuild() { + return version.contains("SNAPSHOT") == false +} + apply plugin: 'android-reporting' \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 4857d05..d39175b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,8 +22,8 @@ VERSION_CODE=3 GROUP=com.github.fernandodev.easyratingdialog MIN_SDK_VERSION=8 -COMPILE_SDK_VERSION=22 -BUILD_TOOLS_VERSION=22.0.1 +COMPILE_SDK_VERSION=23 +BUILD_TOOLS_VERSION=23.0.2 POM_DESCRIPTION=Android Library to display a rating app dialog POM_URL=https://github.com/fernandodev/easy-rating-dialog diff --git a/library/build.gradle b/library/build.gradle index bff99d0..96bf52e 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -22,7 +22,9 @@ android { } dependencies { - compile 'com.afollestad:material-dialogs:0.7.6.0' + compile('com.github.afollestad.material-dialogs:core:0.8.5.6@aar') { + transitive = true + } } apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle' \ No newline at end of file