File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed
Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments