From 28a211c197a8de319b5b17b5b03328f4365d5f64 Mon Sep 17 00:00:00 2001 From: bowyer-app Date: Wed, 3 Feb 2016 21:15:58 +0900 Subject: [PATCH 1/3] update dependencies libraries version --- build.gradle | 4 ++++ demo/build.gradle | 2 +- fabtransitionlayout/build.gradle | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 88eed80..1ed77a6 100644 --- a/build.gradle +++ b/build.gradle @@ -18,3 +18,7 @@ allprojects { jcenter() } } + +ext { + androidSupportAppCompatV7Lib = 'com.android.support:appcompat-v7:23.1.1' +} diff --git a/demo/build.gradle b/demo/build.gradle index a895206..c26c997 100644 --- a/demo/build.gradle +++ b/demo/build.gradle @@ -29,7 +29,7 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:23.0.1' + compile rootProject.ext.androidSupportAppCompatV7Lib compile 'com.android.support:design:23.0.1' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.jakewharton:butterknife:7.0.1' diff --git a/fabtransitionlayout/build.gradle b/fabtransitionlayout/build.gradle index 6e4b234..1c5cc44 100644 --- a/fabtransitionlayout/build.gradle +++ b/fabtransitionlayout/build.gradle @@ -28,7 +28,7 @@ android { dependencies { - compile 'com.android.support:appcompat-v7:23.0.1' - compile 'com.github.ozodrukh:CircularReveal:1.1.1' + compile rootProject.ext.androidSupportAppCompatV7Lib + compile 'com.github.ozodrukh:CircularReveal:1.3.1' } apply from: 'bintray-publish.gradle' From b24567dcfa871ce649ed79dbb26ecb01568f3f71 Mon Sep 17 00:00:00 2001 From: bowyer-app Date: Wed, 3 Feb 2016 21:21:25 +0900 Subject: [PATCH 2/3] update library version --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 9664051..2926eb7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,8 +16,8 @@ # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=0.2.0 -VERSION_CODE=2 +VERSION_NAME=0.3.0 +VERSION_CODE=3 COMPILE_SDK_VERSION=23 BUILD_TOOLS_VERSION=23.0.1 TARGET_SDK_VERSION=23 From ead77f684231edb8fa0495d76ab85c7187f248d5 Mon Sep 17 00:00:00 2001 From: bowyer-app Date: Wed, 3 Feb 2016 21:24:49 +0900 Subject: [PATCH 3/3] update read --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d0a265f..e7fde2b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ repositories { } dependencies { - compile 'com.bowyer.app:fabtransitionlayout:0.2.0@aar' + compile 'com.bowyer.app:fabtransitionlayout:0.3.0@aar' } ```