React-native-share: image is not getting share in android

Created on 28 Mar 2018  路  4Comments  路  Source: react-native-share/react-native-share

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.

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

All 4 comments

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

Was this page helpful?
0 / 5 - 0 ratings