here is my issue I wrote a question on here - https://stackoverflow.com/questions/49516150/base64-image-not-sharing-in-react-native-android .
in iOS its working perfect.
i have the same problem it get confused with react-native-image-crop-picker provider
+1
I am facing the same problem. On sharing image unsupported content exception is coming. Although Base 64 Obj is getting created
have the same problem...
+1
Solved!
Added user permission at AndroidManifest.xml
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
and make sure you've enabled Storage permission for your app
Most helpful comment
Solved!
Added user permission at AndroidManifest.xml
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>and make sure you've enabled Storage permission for your app