I'm building an hybrid app using Ionic and inAppBrowser (branch called ThemeableBrowser). My problem is that I cannot access the camera inside any of the apps that I open using inAppBrowser. I have changed config.xml and added
<config-file parent="NSCameraUsageDescription" platform="ios" target="*-Info.plist">
<string>Godkänner du att appen får tillgång till din kamera?</string>
</config-file>
<config-file parent="NSPhotoLibraryUsageDescription" platform="ios" target="*-Info.plist">
<string>Godkänner du att appen får tillgång till ditt fotobibliotek?</string>
</config-file>
but it is still not working. All I can find while googling is that I need to add the above two things to the config.xml, but it is not working for me on iOS 10. On iOS 9 it's working fine.
Any ideas?