From 1ebe23d65553ef217fe7d6f3ce9c55adcfdb61f9 Mon Sep 17 00:00:00 2001 From: Anton Bevza Date: Fri, 12 Feb 2021 10:34:40 +0200 Subject: [PATCH] Update README.md --- README.md | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 5b64f95a..b1144f93 100644 --- a/README.md +++ b/README.md @@ -41,19 +41,21 @@ To implement all of the features above you can use the following components: ### Download -Download via Gradle: -```gradle -compile 'com.github.stfalcon:chatkit:0.3.3' +1. Add jitpack to the root build.gradle file of your project at the end of repositories. ``` - -or Maven: -```xml - - com.github.stfalcon - chatkit - 0.3.3 - pom - +allprojects { + repositories { + ... + maven { url 'https://jitpack.io' } + } +} +``` +2. Add the dependency +``` +dependencies { + ... + implementation 'com.github.stfalcon:chatkit:[last_version]' +} ``` ### AndroidX