Levi Bostian

Results 55 issues of Levi Bostian

Wendy needs testing around it. At this time, that is all done through an example Android app in this repo that you can use to try out Wendy and see...

From the discussion in [this issue](https://github.com/levibostian/Wendy-Android/issues/21), adding a global listener for a specific `groupId` would be beneficial to be able to listen to a group of tasks and when they...

enhancement
good first issue

At this time, the README for the project does what it needs to do. It covers everything you need to know to install and use Wendy in your own app....

docs
Needs more discussion

The purpose of the `PendingTasksFactory` is to construct instances of `PendingTask` subclasses when Wendy has decided it is time for that `PendingTask` to run. Problems with `PendingTasksFactory`: * Boilerplate code...

enhancement
Needs more discussion

One reason that Wendy was created was to give more transparency to the user of your mobile app about what is going on in the app. When the user performs...

enhancement
Needs more discussion

Looks like [Android will soon have an OS feature that is Shutter](https://youtu.be/hBVwr2ErQCw?list=PLWz5rJ2EKKc_3tkP5FOQ9IgbcOxwLYMD5&t=929) which is a UI for getting photos without making your own UI or requesting runtime permissions. ![2021-10-28 at...

Here is a code sample of what I am trying to do: ```kotlin var shutterBuilder = Shutter.with(this) if (useCamera) shutterBuilder = shutterBuilder.takePhoto().usePrivateAppExternalStorage() else shutterBuilder = shutterBuilder.getPhotoFromGallery() shutterResult = shutterBuilder .snap(object...

Android Q beta has added scoped storage. It affects apps that store files to storage. You can store private files without needing extra permissions or you can use the devices...

I was reading [the docs for auto backup](https://developer.android.com/guide/topics/data/autobackup) recently and it talks about how docs in `getExternalStorage()` are automatically backed up. Add to docs how to exclude photos taken by...

See issue https://github.com/levibostian/Shutter-Android/issues/8#issuecomment-376740206 for the discussion behind this feature. In the builder to take a photo or record a video, add the ability to specify the name of a directory...