BootLaces icon indicating copy to clipboard operation
BootLaces copied to clipboard

A Kotlin work manager library for Android with progress notifications and Hilt support.

Results 7 BootLaces issues
Sort by recently updated
recently updated
newest added

It's complaining about ReschedulingReceiver matching the same key. ``` C:\Users\evilt\AndroidStudioProjects\EvilScreenNew\app\build\generated\source\kapt\debug\com\evilthreads\App_HiltComponents.java:141: error: [Dagger/MissingBinding] @dagger.hilt.android.qualifiers.ActivityContext android.content.Context cannot be provided without an @Provides-annotated method. public abstract static class SingletonC implements ReschedulingReceiver_GeneratedInjector, ^ A...

bug

Display background work notification on watches.

enhancement

Since WorkRescheduling is only use one time only, it should perhaps be only instantiated once and then let it be garbage collected

enhancement

- add scheduling functions for calendar time. - example tuesdayNoonWorker.scheduleAtNoon(periodic = true, day = tuesday)

enhancement

- add scheduling functions for clock time. - example noonWorker.scheduleNoon(periodic = true) - would execute work at noon everyday - example 2amWorker.scheduleAtTwo(meridiem = AM)

enhancement

- Just finished up shedule before and after reboot - this causes the internals for managing when and how to show the foreground notification to have changed - it's not...

bug

- I couldn't get room-coroutines to compile so I went without it and accidentally left suspend keyword in there. - this could have adverse effects but it worked fine the...