Xcode: Missing Info.plist key for NSCameraUsageDescription Xcode: Missing Info.plist key for NSCameraUsageDescription ios ios

Xcode: Missing Info.plist key for NSCameraUsageDescription


You need to put a particular and proper description to use Camera in your application. One my application is denied due to improper description. So try with a proper description, maybe it will help you.

<key>Privacy - Camera Usage Description</key><string>APPNAME requires access to your phone’s camera.</string>


Ok it is an old one but i'd share my experience... nothing was working for me.What i add to to was :

  • using Xcode to edit the plist.info. NOT in an external editor !!!!

  • DO NOT edit the text CREATE a new key using the + sign.

  • it will ask you to replace the previous (unless the previous one has been entered wrong... my case i think)

enter image description here

enter image description here


Try the both Camera and Library permission in Plist.

<key>NSCameraUsageDescription</key><string>Access camera</string><key>NSPhotoLibraryUsageDescription</key><string>Library</string>