[Android] ShowImagePicker callback not triggered for takePhoto and chooseFromLibrary
See original GitHub issueConsole won’t show any log message for response content when back from take photo session and choose from library session, but only display console log content in cancel and custom button case.
I implementing it on React Native 0.22 and android phone using 4.4.4.
Any idea what happened?
I followed the guide for Android Installation.
I get the npm package via
npm install react-native-image-picker@latest --save
I tried launchCamera() and launchImageLibrary() also cannot trigger callback in my development phone. thanks.
Issue Analytics
- State:
- Created 7 years ago
- Comments:27 (11 by maintainers)
Top Results From Across the Web
[Android] ShowImagePicker callback not triggered for ... - GitHub
Console won't show any log message for response content when back from take photo session and choose from library session, but only display ......
Read more >react-native-image-picker is not triggering the callback for ...
I am building a mobile application using React Native. My application needs to access photo library and camera. I am using this library,...
Read more >How to pick images from Camera & Gallery in React Native app
In this post, you learned how to implement React Native Image Picker in your React Native app and pick the images from Camera...
Read more >React Native Image Picker Tutorial | Pick from Camera, Gallery
In this tutorial, you'll learn how to pick an image from the photo gallery or from the camera for a react native app....
Read more >ImagePicker - Expo Documentation
expo-image-picker provides access to the system's UI for selecting images and videos from the phone's library or taking a photo with the camera....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Try to add the super method in it
did u override the
onActivityResult
method,so checkout…and callsuper.onActivityResult(...)
,it works for me