Skip to content

Commit 2430c7c

Browse files
committed
up to 1.0.1
1 parent 8087ccd commit 2430c7c

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
# Change Log
22

3+
## Version 1.0.1 _(03 Apr 2020)_
4+
Linked to `jcenter()`, Now not need to add maven url to repositories `build.gradle` project level.
5+
If you still using `v1.0.0`, should add maven url to repositories `build.gradle` project level
6+
```groovy
7+
repositories {
8+
...
9+
maven { url 'https://dl.bintray.com/ss564/SlidingButton' }
10+
...
11+
}
12+
```
13+
14+
-------
15+
316
## Version 1.0.0 _(03 Apr 2020)_
417

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

720

821
-------
922

10-
1123
## Version 1.0.0-rc _(03 Apr 2020)_
1224

1325
First launch as pre-release version

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SlidingButton
22

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

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

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

24-
Then **sync** your gradle. If you have errors, try add maven url to your `build.gradle` project level
25-
26-
```groovy
27-
repositories {
28-
...
29-
maven { url 'https://dl.bintray.com/ss564/SlidingButton' }
30-
...
31-
}
32-
```
24+
Then **sync** your gradle.
3325

3426

3527
----------

build.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,3 @@ allprojects {
3131
task clean(type: Delete) {
3232
delete rootProject.buildDir
3333
}
34-
35-
subprojects {
36-
tasks.withType(Javadoc).all { enabled = false }
37-
}

slidingbutton/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
defaultConfig {
1010
minSdkVersion 17
1111
targetSdkVersion 29
12-
versionCode 2
13-
versionName "1.0.0"
12+
versionCode 3
13+
versionName "1.0.1"
1414

1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1616
consumerProguardFiles 'consumer-rules.pro'

0 commit comments

Comments
 (0)