Tell us which versions you are using:
Tell us to which platform this issue is related
Picker Should be able to select image from google photos and system photos App.
After selecting the image it throws "Invalid image selected"
I'm calling
selectImage() {
ImagePicker.openPicker({
cropping: false,
mediaType: 'photo'
}).then(image => {
this.setState({cover: image})
});
}
then selecting image from Google Photos or Photos(system gallery) App.
I'm able to select image from recent images and also by going through folders.
//Screenshot of stacktrace

Same here.
I am on Pixel 2 XL, Android X with react-native-image-crop-picker: 0.33.2.
I am able to select the "recent images on phone" and "Google Photos" (only Photos folder), can't pick all other pics within "Device Folders" (like Camera, Screenshots, Picture, Messenger, Facebook Folder etc..)
@jmahatpure01 I have added the following lines in the AndroidManifest.xml, it seems working fine now:
android:usesCleartextTraffic="true"
android:requestLegacyExternalStorage="true"
Referred this:
@shiweiwei114 thankyou it worked for me.
Most helpful comment
@jmahatpure01 I have added the following lines in the AndroidManifest.xml, it seems working fine now:
android:usesCleartextTraffic="true"
android:requestLegacyExternalStorage="true"
Referred this: