We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to share some picture with react-native-share lib.
RNFetchBlob.config({ fileCache: true, appendExt: 'jpeg' }) .fetch('GET', url) .then((res) => { const shareOptions = { url: `data:image/jpeg;base64,${res.base64()}`, type: 'image/jpeg', }; try { Share.open(shareOptions).then(() => { // OK }); } catch (error) { // ERROR } });
When i test in IOS i can share normally, but in android i receive this error.
I recently discover this issue is referenced in wkh237#358 and maybe occurs because i upgrade my 'targetSdkVersion' to >= 24 (https://stackoverflow.com/questions/38200282/android-os-fileuriexposedexception-file-storage-emulated-0-test-txt-exposed) or is my 'react-native' version. ; I'm using:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to share some picture with react-native-share lib.
When i test in IOS i can share normally, but in android i receive this error.

I recently discover this issue is referenced in wkh237#358 and maybe occurs because i upgrade my 'targetSdkVersion' to >= 24 (https://stackoverflow.com/questions/38200282/android-os-fileuriexposedexception-file-storage-emulated-0-test-txt-exposed) or is my 'react-native' version. ;
I'm using:
The text was updated successfully, but these errors were encountered: