React-native-share: base64 image not working on android targetSDK23

Created on 12 Apr 2018  路  3Comments  路  Source: react-native-share/react-native-share

Hye,
I notice that sharing using base64 image not working on android when the targetSDK is 23.. for 22 it's working.. could be related to overlay permission ?

is there any ways or work around to make sure it's working for 23 because after I published app to play store I cannot change it back to 22

thanks!

Most helpful comment

You need to request permissions :

const allowedStorage = await PermissionsAndroid.request(
    PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE
  );

All 3 comments

You need to request permissions :

const allowedStorage = await PermissionsAndroid.request(
    PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE
  );

@MrHazimAli did #244 solved?
Can we close this issue?

@jgcmarins yup, it solved.
Thanks! 馃憤

Was this page helpful?
0 / 5 - 0 ratings

Related issues

byk04712 picture byk04712  路  3Comments

andyfen picture andyfen  路  4Comments

naveedmastan picture naveedmastan  路  3Comments

desis123 picture desis123  路  3Comments

macuna picture macuna  路  4Comments