All Questions
36 questions
0
votes
1
answer
193
views
A problem occurred configuring project ':react-native-image-picker'
Configure project :react-native-exit-app
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information ...
0
votes
0
answers
35
views
Unable to Upload Image to Firebase in React Native, TypeError: Cannot read property 'showImagePicker' of undefined, js engine: hermes
I'm working on a React Native project where I need to upload an image to Firebase. I'm using react-native-image-picker for image selection and @react-native-firebase/firestore for interacting with ...
1
vote
0
answers
215
views
Error: Cannot find native module 'ExponentImagePicker' when using 'expo-image-picker' with Hermes JS engine
I'm working on a React Native project where I need to upload an image to Firebase. I'm using react-native-image-picker for image selection and @react-native-firebase/firestore for interacting with ...
0
votes
1
answer
490
views
React-Native: Image picker complain with new Google MEDIA policy
I'm using typical library (react-native-image-picker) for working with media in react-native. With new google policy this library doesn't match. Official Google explanation:
For a more privacy ...
2
votes
1
answer
1k
views
React Native Image Picker Is causing the Build failed
Hi This is my first app in react native. I am trying to Use react-native-image-picker. But it is not allowing me to build the app. I am getting the following error
FAILURE: Build failed with an ...
4
votes
0
answers
976
views
react-native-image-picker uri to file to node js backend
I am working on a react-native social app and trying to upload a post image from react-native using react-native-image-picker and typescript. I am able to get Image uri but have to create file/blob to ...
0
votes
1
answer
647
views
React native image upload getting network error
'react-native-image-picker' for uploading image in my application, Sometimes it is uploading and sometimes i am getting [TypeError: Network request failed] below is the code:
FormData in my component:...
0
votes
2
answers
5k
views
launchCamera() in react-native-image-picker doesn't open anything when installed on a device
amazing developers. I am building an app that would offer opportunity to either take a photo on spot and upload it, or choose an image from gallery. I am using react-native-image-picker for it. So far,...
0
votes
1
answer
4k
views
react-native-image-crop-picker not displaying image
My Image Picker is able to select image from the gallery but it is unable to display the image on the app, I've tried many ways and reviewed my code all over again but I'm unsure what went wrong. Can ...
0
votes
1
answer
3k
views
Expo image picker cannot show image on web that uploaded from Mobile due to different url in React Native
I uploaded image from web account, this image showing on mobile as well but when I uploaded image from mobile it cannot display on web or any other mobile
Because in database web image uri is readable ...
2
votes
1
answer
259
views
Save image locally using react-native-image-picker
I am new to React Native. I am trying to get images from react-native-image-picker library and I am trying to get the file path and store it in the redux store to access it later. Rather I am getting ...
0
votes
2
answers
4k
views
How to upload image with react native?
I upload image with react js like this :
const onSubmit = (e) => {
console.log(e.img);
form.append("file", e.img.originFileObj);
Axios.post("url", form, {
...
1
vote
1
answer
3k
views
React native [TypeError: undefined is not an object (evaluating 'iter[Symbol.iterator]')] error
So I have a an image selector that when I press, it launches the phone image library and then when I select the image it is supposed to fill that image selector but every time i select an image, I get ...
1
vote
1
answer
1k
views
React native No permission needed for camera or photo library access
I am working on an app where the user needs to load images from a photo library or camera, I am using the react-native-image-picker library for accessing the camera, however, I use it without react-...
1
vote
1
answer
138
views
Make one function wait for another...Async/ Await
When I pick an image using react-native-image-picker everything works as expected. I then pass the response to a function to upload the image to firebase storage.
On my device, this seems to work, ...