React-native-image-crop-picker: [Android] Invalid image selected for Google Photos/System Gallery

Created on 23 Aug 2020  路  3Comments  路  Source: ivpusic/react-native-image-crop-picker

Version

Tell us which versions you are using:

  • react-native-image-crop-picker v0.32.2
  • react-native v0.63.2

Platform

Tell us to which platform this issue is related

  • Android 10
    Device: Realme XT

Expected behaviour

Picker Should be able to select image from google photos and system photos App.

Actual behaviour

After selecting the image it throws "Invalid image selected"

Steps to reproduce

  1. I'm calling
    selectImage() {
    ImagePicker.openPicker({
    cropping: false,
    mediaType: 'photo'
    }).then(image => {
    this.setState({cover: image})
    });
    }

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

Attachments

//Screenshot of stacktrace
Screenshot_2020-08-23-19-33-03-39

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:

All 3 comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

pavsidhu picture pavsidhu  路  3Comments

aterribili picture aterribili  路  3Comments

tximpa91 picture tximpa91  路  3Comments

victorwpbastos picture victorwpbastos  路  3Comments

xuchao321 picture xuchao321  路  3Comments