Tolfx commented on issue #820: URL: https://github.com/apache/cordova-plugin-camera/issues/820#issuecomment-1375690717
This is an issue with the plugin `cordova-plugin-camera`, had the same issue and was due to temp files, added a try catch block to fix it and solved the issue. https://github.com/apache/cordova-plugin-camera/blob/827bb611eef9233ded58d58cdefce5f6d3c11151/src/android/CameraLauncher.java#L1242 ```diff - this.cordova.getActivity().getContentResolver().delete(uri, null, null); + try { + this.cordova.getActivity().getContentResolver().delete(uri, null, null); + } catch (Exception ex) { + // do nothing + } ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
