Skip to content

Commit

Permalink
Update material dialogs library to 0.8.5.6 and fixes #10
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandodev committed Mar 3, 2016
1 parent 92b25cc commit c41593e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
16 changes: 6 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -31,4 +23,8 @@ allprojects {
}
}

def isReleaseBuild() {
return version.contains("SNAPSHOT") == false
}

apply plugin: 'android-reporting'
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit c41593e

Please sign in to comment.