We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
imageCaptureHandler = () => { ImagePicker.openCamera({ mediaType: 'photo', compressImageQuality: 0.6 }) .then((image) => { console.log('Called==>', 'call'); let files = [ { uri: image.path, name: 'invoice0.jpg', type: image.mime }, ]; this.setState({ isUploadInvoiceModal: false, isSendInvoiceFiles: true, }); this.sendInvoiceNumber(files); }) .catch((e) => { console.log('Errr', e); if (e.code !== 'E_PICKER_CANCELLED') { DropDownHolder.dropDown.alertWithType( 'error', '', I18n.t('Please_try_again') ); } else { console.log('user cancelled or something went worng'); } }); };
User can be open the camera and capture the image
when i try to open the camera can be open the camera and capture the image, ImagePicker.openCamera throws the error like missing android permission
The text was updated successfully, but these errors were encountered:
#1849
Sorry, something went wrong.
No branches or pull requests
Your Environment
Expected Behavior
User can be open the camera and capture the image
Actual Behavior
when i try to open the camera can be open the camera and capture the image, ImagePicker.openCamera throws the error like missing android permission
Attachments
The text was updated successfully, but these errors were encountered: