serratus/quaggaJS

Any idea what permissions I need to grant on a Cordova (phone gap) app for the Quagga JS to work on iOS?

ghevge opened this issue · 1 comments

ghevge commented

Hi,
Any idea what permissions I need to grant on an Cordova (phone-gap) app for the Quagga JS to work on iOS?

I've provided these so far, but doesn't seem to be enough, as the app doesn't sees the camera(s).

<!-- Camera related stuff -->
		<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
		    <string>need camera access to take pictures</string>
		</edit-config>
		<edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
		    <string>need photo library access to get pictures from there</string>
		</edit-config>
		<edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
		    <string>need location access to find things nearby</string>
		</edit-config>
		<edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist" mode="merge">
		    <string>need photo library access to save pictures there</string>
		</edit-config>
ghevge commented

Hi @djoo . I've noticed that you opened an iphone related quagga issue recently, so I was wondering if you might be able to help me with my question? It sounds like you are able to acces the camera in your ios app.

Thank you!