Shutter-Android icon indicating copy to clipboard operation
Shutter-Android copied to clipboard

It's finally easy to take photos/videos via camera or get photos/videos from gallery on Android.

Results 7 Shutter-Android issues
Sort by recently updated
recently updated
newest added

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...

I have been using the lib in a couple apps of mine and I have run into NPEs. In the builder patterns where I am doing `companion.getActivity()!!`, for example, could...

[Google provides a method to check amount of storage on device](https://developer.android.com/training/basics/data-storage/files.html#GetFreeSpace). Could we give an API in Shutter to be able to check if the user has enough storage before...

enhancement