From 2430c7cc8ffa2ef08ffe3ad51168bbe5a7fa7ad4 Mon Sep 17 00:00:00 2001 From: nuarz71 Date: Fri, 3 Apr 2020 17:33:01 +0800 Subject: [PATCH] up to 1.0.1 --- CHANGELOG.md | 14 +++++++++++++- README.md | 12 ++---------- build.gradle | 4 ---- slidingbutton/build.gradle | 4 ++-- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cce16a..a7a65e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # 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. @@ -7,7 +20,6 @@ Slide button library for android, we hope this library is useful and easy to cus ------- - ## Version 1.0.0-rc _(03 Apr 2020)_ First launch as pre-release version diff --git a/README.md b/README.md index ac6fc4f..7e50dcc 100644 --- a/README.md +++ b/README.md @@ -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. @@ -21,15 +21,7 @@ Add **dependencies** to your `build.gradle` file at `:app` or modules level implementation 'id.ss564.lib.slidingbutton:slidingbutton:' ``` -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. ---------- diff --git a/build.gradle b/build.gradle index 0f612e1..bb519e7 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,3 @@ allprojects { task clean(type: Delete) { delete rootProject.buildDir } - -subprojects { - tasks.withType(Javadoc).all { enabled = false } -} diff --git a/slidingbutton/build.gradle b/slidingbutton/build.gradle index e2f4104..45888ac 100644 --- a/slidingbutton/build.gradle +++ b/slidingbutton/build.gradle @@ -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'