Levi Bostian
Levi Bostian
https://github.com/earthly/earthly
I do like being able to capture crashes in an app but I don't like the annoying setup of getting crashlytics installed and it being a Google dependency. For privacy...
There are many ways to do this. I have used them in the past and have good and bad luck. Here are some requirements that I have with this library:...
https://gist.github.com/levibostian/f3663c1926ce8ee33647be386f294410
The UI of your app is constantly changing. With many different Android devices in the wild, it's important to view how your UI looks on all of these different devices....
FYI, this public repo contains [an API key](https://github.com/kayvannj/PermissionUtil/blob/master/gradle.properties#L20-L21).
Wendy began over 3 years ago. I created it to add offline support for an app that I was building at the time for an app I was building. Since...
If you try to add a pending task and it already exists, the function [returns without trying to run the pending task](https://github.com/levibostian/Wendy-Android/blob/master/wendy/src/main/java/com/levibostian/wendy/service/Wendy.kt#L119-L148). # Expected When you add a pending task,...
Here is an example `PendingTask` of mine: ```kt class FavoriteWorkoutPendingTask(workout: Workout?): PendingTask( dataId = if (workout != null) JsonAdapter.toJson(workout) else null, groupId = null, manuallyRun = false, tag = TAG)...
Android Jetpack WorkManager is stable today. Add to docs about how to use with Wendy. Android Jetpack WorkManager Stable Release http://android-developers.googleblog.com/2019/03/android-jetpack-workmanager-stable.html