Skip to content

Commit

Permalink
Updated with maven central badge
Browse files Browse the repository at this point in the history
  • Loading branch information
svignesh93 authored Feb 25, 2021
1 parent 726f390 commit 42d5865
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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()
...
}
}
~~~
Expand All @@ -182,7 +193,7 @@ allprojects {

~~~
dependencies {
implementation 'com.github.LiteKite:Android-Widgets:0.0.6'
implementation 'com.github.litekite:android-widgets:0.0.7'
}
~~~

Expand All @@ -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.
~~~
~~~

0 comments on commit 42d5865

Please sign in to comment.