From 42d5865ac576338e3657dd35601111783f71d16f Mon Sep 17 00:00:00 2001 From: Vignesh S Date: Fri, 26 Feb 2021 00:01:02 +0530 Subject: [PATCH] Updated with maven central badge --- README.md | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 94b5399..2e53aa6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Android-Widgets -[![](https://jitpack.io/v/LiteKite/Android-Widgets.svg)](https://jitpack.io/#LiteKite/Android-Widgets) +[![GitHub release](https://img.shields.io/maven-central/v/com.github.litekite/android-widgets)](https://search.maven.org/search?q=g:com.github.litekite) An Android Custom Widgets Library, offers custom ui components. @@ -167,13 +167,24 @@ CircleImageButton is a clickable image button that makes image source [app:srcCo ## Download -1) Add the jitpack repo in your root build.gradle at the end of repositories: +1) Add the maven central repo in your root build.gradle at the end of repositories: ~~~ +buildscript { + ... + repositories { + ... + mavenCentral() + ... + } + ... +} +... allprojects { repositories { ... - maven { url 'https://jitpack.io' } + mavenCentral() + ... } } ~~~ @@ -182,7 +193,7 @@ allprojects { ~~~ dependencies { - implementation 'com.github.LiteKite:Android-Widgets:0.0.6' + implementation 'com.github.litekite:android-widgets:0.0.7' } ~~~ @@ -204,4 +215,4 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -~~~ \ No newline at end of file +~~~