Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,19 @@ A Simple Android library to get the number of words and give you the time it wil

# How to set up
And add a dependency code to your module's build.gradle file.
```
``` groovy
dependencies {
implementation 'com.github.wise4rmgod:ReadTime:0.1.0'
}

implementation "com.github.wise4rmgod:ReadTime:$version"
}
```
Add below codes to your root build.gradle file (not your module build.gradle file).
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
``` groovy
allprojects {
repositories {
// ...
maven { url 'https://jitpack.io' }
}
}
```

## Example
Expand Down