Skip to content

Commit

Permalink
RELEASE_VERSION_8.3 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilthreads669966 authored Jan 1, 2021
1 parent b45ce02 commit 9209848
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ allprojects {
2. Add the dependency to your app's build.gradle
```gradle
dependencies {
implementation 'com.github.evilthreads669966:bootlaces:8.2'
implementation 'com.github.evilthreads669966:bootlaces:8.3'
implementation "com.google.dagger:hilt-android:2.29.1-alpha"
kapt "com.google.dagger:hilt-android-compiler:2.29.1-alpha"
}
Expand Down Expand Up @@ -100,6 +100,12 @@ scheduler.scheduleHourly(MyWorker()) //runs task once every hour and persists th

//daily worker
scheduler.scheduleDaily(MyWorker()) //runs task once every day and persists through reboot

//monthly worker
scheduler.scheduleMonthly(MyWorker()) //runs task once every month and persists through reboot

//yearly worker
scheduler.scheduleYearly(MyWorker()) //runs task once every year and persists through reboot
```
## Important To Know
- You can schedule as many workers as you want both persistent and one time workers.
Expand Down

0 comments on commit 9209848

Please sign in to comment.