João Silva
João Silva
@anees715 I am also facing the same issue. It was working with expo 27.0.0. After upgrading to 31.0.2 it stopped working. When I upload an image to firebase storage it...
@anees715 Hey I have found the solution. Here is a function to get the blob from an uri: function urlToBlob(url) { return new Promise((resolve, reject) => { var xhr =...
Thanks! Worked like a charm ;)
@edvin1983 I already have a fix. You can use this function to get the blob: function urlToBlob(url) { return new Promise((resolve, reject) => { var xhr = new XMLHttpRequest(); xhr.onerror...