Android-Image-Cropper: Picker no longer includes Photo app on Android 10
The code below works with SDK < 29, but on Android 10 phones, even when targeting SDK 28, it will no longer show the Photo app, instead only showing Camera and generic File handling applications.
This is on a Pixel 3, but you should be able to repro on any Android 10 device with the following code:
CropImage.activity()
.setGuidelines(CropImageView.Guidelines.OFF)
.setFixAspectRatio(true)
.setCropShape(CropImageView.CropShape.OVAL)
.start(activity)
About this issue
- Original URL
- State: open
- Created 5 years ago
- Reactions: 1
- Comments: 20
I am facing the same issue with every Android 10 device. Crop intent is not visible through the app. Did anyone get a solution or found a workaround for this?