Black screen on native camera IOS

Hi, i need help !! after take a photo a black screen shows up and the app dont respond.

in android works perfectly

Can you upload a test repo somewhere so I can look in more detail?

Here’s an example of using the Camera plugin with the latest Ionic Native, can you verify you’re doing something similar?

did you debug or run this example on ios10 ? because its not working on a device !!

Add Privacy - Camera Usage Description info .Plist File In Xcode //

or Add This Code in config.xml in ios section

<config-file parent="NSPhotoLibraryUsageDescription" platform="ios" target="*-Info.plist">
            <string>You can upload your profile picture using your Photo Library</string>
        </config-file>
        <config-file parent="NSCameraUsageDescription" platform="ios" target="*-Info.plist">
            <string>You can upload your profile picture using your camera</string>
        </config-file>

Thanks