Houdhey opened a new issue #707:
URL: https://github.com/apache/cordova-plugin-camera/issues/707
# Bug Report
## Problem
My app was working well with Camera, until I tested on Android 11 emulator.
Is there something new to do to make it work for Android 11? Like adding
something on Manifest...?
### What is expected to happen?
Open the camera.
### What does actually happen?
Nothing.
### Command or Code
` takeImage() {
const options: CameraOptions = {
quality: 100,
destinationType: this.camera.DestinationType.DATA_URL,
mediaType: this.camera.MediaType.PICTURE,
encodingType: this.camera.EncodingType.JPEG,
correctOrientation: true,
allowEdit: false,
};
this.camera.getPicture(options).then(
(imageData) => {
console.log('image Data ' + JSON.stringify(imageData));`
### Environment, Platform, Device
Android 11, device : emulator Pixel 3A with Android 11
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]