Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
⬆️ Update README.md
  • Loading branch information
MehulKK authored Aug 9, 2022
1 parent 5e4393f commit 30e5984
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,24 @@ The actual features are:
### Gradle Dependency
* Add it in your root build.gradle at the end of repositories:

```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
- For Gradle version 5.x.x or less
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
- For Gradle version 6.x.x and above, in settings.gradle file inside `pluginManagement` block
```
pluginManagement {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

* Add the dependency in your app's build.gradle file

Expand Down

0 comments on commit 30e5984

Please sign in to comment.