I\'m working on a react-native and I need to upload an image to Firebase using Firebase Storage. I\'m using react-native-image-picker to select the image from the phone which gi
I use split().
function uploadImage(image){ const user = getCurrentUser(); const refImage = app.storage().ref(`profileImages/${user.uid}`); refImage.putString(image.split(',')[1], 'base64').then(() => { console.log('Image uploaded'); }); }