File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
518Slide 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
1325First launch as pre-release version
Original file line number Diff line number Diff line change 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
66Slide 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
2121implementation '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----------
Original file line number Diff line number Diff line change @@ -31,7 +31,3 @@ allprojects {
3131task clean (type : Delete ) {
3232 delete rootProject. buildDir
3333}
34-
35- subprojects {
36- tasks. withType(Javadoc ). all { enabled = false }
37- }
Original file line number Diff line number Diff 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'
You can’t perform that action at this time.
0 commit comments