If your app uses camera, you have to set NSCameraUsageDescription
in InfoPlist.strings
. But what if I don't want to use any custom message? Is it accepted to set empty empty NSCameraUsageDescription
like this:
NSCameraUsageDescription = "";
Docs say a bit strange about this:
If your app attempts to access the device’s camera without a corresponding purpose string, your app exits
.
What is "exits"? Will my app rejected?