Skip to content

Commit 1ebe23d

Browse files
authored
Update README.md
1 parent 3db6396 commit 1ebe23d

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,21 @@ To implement all of the features above you can use the following components:
4141

4242
### Download
4343

44-
Download via Gradle:
45-
```gradle
46-
compile 'com.github.stfalcon:chatkit:0.3.3'
44+
1. Add jitpack to the root build.gradle file of your project at the end of repositories.
4745
```
48-
49-
or Maven:
50-
```xml
51-
<dependency>
52-
<groupId>com.github.stfalcon</groupId>
53-
<artifactId>chatkit</artifactId>
54-
<version>0.3.3</version>
55-
<type>pom</type>
56-
</dependency>
46+
allprojects {
47+
repositories {
48+
...
49+
maven { url 'https://jitpack.io' }
50+
}
51+
}
52+
```
53+
2. Add the dependency
54+
```
55+
dependencies {
56+
...
57+
implementation 'com.github.stfalcon:chatkit:[last_version]'
58+
}
5759
```
5860

5961
### AndroidX

0 commit comments

Comments
 (0)