I appreciate your help.
I am trying to save my photo taken in the roll camera of ios and android, but when I take the photo it is only stored in the temporary array but from the photo viewer it can not be visualized, how can I save it directly in the ios roll camera and android? If anyone can help me thank you very much
` pickSingleWithCamera(cropping) {
ImagePicker.openCamera({
cropping: cropping,
width: 500,
height: 500,
includeExif: true,
writeTempFile: true,
includeBase64: true,
}).then(image => {
console.log('received muestra', image.path);
this.setState({
image: {uri: image.path, width: image.width, height: image.height},
images: null
});
}).catch(e => alert(e));
}`
@emalazt2014 Check this out https://facebook.github.io/react-native/docs/cameraroll#savetocameraroll
@venkatmithunk the docs give no information on resolving permissions for Android, only iOS. Still looking for some help figuring this one out
Most helpful comment
@venkatmithunk the docs give no information on resolving permissions for Android, only iOS. Still looking for some help figuring this one out