Skip to content

Commit

Permalink
up to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nuarz71 committed Apr 3, 2020
1 parent 8087ccd commit 2430c7c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
# Change Log

## Version 1.0.1 _(03 Apr 2020)_
Linked to `jcenter()`, Now not need to add maven url to repositories `build.gradle` project level.
If you still using `v1.0.0`, should add maven url to repositories `build.gradle` project level
```groovy
repositories {
...
maven { url 'https://dl.bintray.com/ss564/SlidingButton' }
...
}
```

-------

## Version 1.0.0 _(03 Apr 2020)_

Slide button library for android, we hope this library is useful and easy to customize as you needed.


-------


## Version 1.0.0-rc _(03 Apr 2020)_

First launch as pre-release version
Expand Down
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SlidingButton

![Min SDK](https://img.shields.io/badge/Min%20Sdk-17-orange)
![Version](https://img.shields.io/badge/Version-v1.0.0-blue)
![Version](https://img.shields.io/badge/Version-v1.0.1-blue)

Slide button library for android, we hope this library is useful and easy to customize as you needed.

Expand All @@ -21,15 +21,7 @@ Add **dependencies** to your `build.gradle` file at `:app` or modules level
implementation 'id.ss564.lib.slidingbutton:slidingbutton:<latest-version>'
```

Then **sync** your gradle. If you have errors, try add maven url to your `build.gradle` project level

```groovy
repositories {
...
maven { url 'https://dl.bintray.com/ss564/SlidingButton' }
...
}
```
Then **sync** your gradle.


----------
Expand Down
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,3 @@ allprojects {
task clean(type: Delete) {
delete rootProject.buildDir
}

subprojects {
tasks.withType(Javadoc).all { enabled = false }
}
4 changes: 2 additions & 2 deletions slidingbutton/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
defaultConfig {
minSdkVersion 17
targetSdkVersion 29
versionCode 2
versionName "1.0.0"
versionCode 3
versionName "1.0.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
Expand Down

0 comments on commit 2430c7c

Please sign in to comment.