From d2576141b76f7879ae621308e9b9a52d86af657d Mon Sep 17 00:00:00 2001 From: Sheraz Ahmad Khilji Date: Tue, 26 Jun 2018 16:13:24 +0200 Subject: [PATCH] Fixed gradle and updated new library version 1.4.3 --- README.md | 5 +++-- RangeBarSample/build.gradle | 3 ++- build.gradle | 1 + materialrangebar/build.gradle | 5 ++--- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 14e0b26a..43826e2f 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Developers can customize the following attributes (both via XML and programatica ### Change Log ``` +1.4.3 - Fixes an issue where you user was able to drag a thumb outside of the valid range of Rangebar. 1.4.2 - Added option for rounding status Bar progress using mrb_rangeBar_rounded. Also Implemented seekbar to select the nearest tick, when clicked. Also Fixed Rangebar issue that was causing right pin to move left of left pin when both had same value. 1.4.1 - Small Ui fixes 1.4 - Added mrb_ prefix to all attributes. Also added mrb_selectorBoundaryColor and mrb_selectorBoundarySize attribute. @@ -162,7 +163,7 @@ allprojects { ```groovy dependencies { - implementation 'com.appyvet:materialrangebar:1.4.2' + implementation 'com.appyvet:materialrangebar:1.4.3' } ``` @@ -170,7 +171,7 @@ dependencies { **if you are already using android support library inside your project and run into multiple version issues related to android support library then modify the gradle path like this** ```groovy dependencies { - compile ('com.appyvet:materialrangebar:1.4.2') { + compile ('com.appyvet:materialrangebar:1.4.3') { exclude module: 'support-compat' } } diff --git a/RangeBarSample/build.gradle b/RangeBarSample/build.gradle index 87f72beb..8526778c 100644 --- a/RangeBarSample/build.gradle +++ b/RangeBarSample/build.gradle @@ -2,8 +2,9 @@ apply plugin: 'com.android.application' dependencies { implementation project(':materialrangebar') -// implementation 'com.appyvet:materialrangebar:1.4.2' +// implementation 'com.appyvet:materialrangebar:1.4.3' implementation 'com.android.support:cardview-v7:27.1.1' + implementation 'com.android.support:support-compat:27.1.1' } android { compileSdkVersion 27 diff --git a/build.gradle b/build.gradle index 9f9b5c6a..189c2b92 100644 --- a/build.gradle +++ b/build.gradle @@ -8,6 +8,7 @@ buildscript { classpath "org.jfrog.buildinfo:build-info-extractor-gradle:3.1.1" } } + plugins { id "com.jfrog.bintray" version "1.7.3" id "com.github.dcendents.android-maven" version "1.5" diff --git a/materialrangebar/build.gradle b/materialrangebar/build.gradle index 490b0303..a810d782 100644 --- a/materialrangebar/build.gradle +++ b/materialrangebar/build.gradle @@ -22,7 +22,7 @@ ext { siteUrl = 'https://github.com/oli107/material-range-bar' gitUrl = 'https://github.com/oli107/material-range-bar.git' - libraryVersion = '1.4.2' + libraryVersion = '1.4.3' developerId = 'krazykira' developerName = 'Sheraz Ahmed Khilji' @@ -44,12 +44,11 @@ android { targetSdkVersion 27 versionCode 1 versionName libraryVersion - } } dependencies { - compile 'com.android.support:support-compat:27.1.1' + implementation 'com.android.support:support-compat:27.1.1' } /**