Skip to content

Commit

Permalink
Fixed gradle and updated new library version 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheraz Ahmad Khilji committed Jun 26, 2018
1 parent bcd4167 commit d257614
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -162,15 +163,15 @@ allprojects {

```groovy
dependencies {
implementation 'com.appyvet:materialrangebar:1.4.2'
implementation 'com.appyvet:materialrangebar:1.4.3'
}
```


**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'
}
}
Expand Down
3 changes: 2 additions & 1 deletion RangeBarSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 2 additions & 3 deletions materialrangebar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
}

/**
Expand Down

0 comments on commit d257614

Please sign in to comment.