You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2021/08/05 14:04:31 UTC

[GitHub] [cordova-plugin-camera] codal-shubhamb commented on issue #506: iOS13 file_uri error picking video from gallery

codal-shubhamb commented on issue #506:
URL: https://github.com/apache/cordova-plugin-camera/issues/506#issuecomment-893487299


   I have solved this issue just by removing and adding camera plugin in my application, You should try this too. The changes in Cordova-camera plugin which solves the issue are as following:
   Filename - https://github.com/apache/cordova-plugin-camera/blob/master/src/ios/CDVCamera.m and just search "ResultForVideo" and there are these three lines are added in latest plugin
   // On iOS 13 the movie path becomes inaccessible, create and return a copy
   if (IsAtLeastiOSVersion(@"13.0")) {
   moviePath = [self createTmpVideo:[[info objectForKey:UIImagePickerControllerMediaURL] path]];
   }


-- 
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: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org