darshanrampatel commented on issue #681: URL: https://github.com/apache/cordova-plugin-camera/issues/681#issuecomment-725352716
I am seeing the same behaviour as well. I managed to work-around this by editing the `tempFilePath` function as below: https://github.com/apache/cordova-plugin-camera/blob/db2ffedecc23993e2393a6226a63bd05998f0f01/src/ios/CDVCamera.m#L397 ~~NSString* docsPath = [NSTemporaryDirectory()stringByStandardizingPath];~~ NSString* docsPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Library/NoCloud"]; Note: this may mean you are storing files on the device permanently depending on how you clean up the files, but this is fine for my use case. ---------------------------------------------------------------- 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]
