XCode8向ITunes提交版本,不显示或提示无效的版本

时间:2021-11-27 22:39:26
XCode8向ITunes提交版本,不显示或提示无效的版本

主要是iOS10,对隐私权限有了新的要求.在info.plist里加入如下代码.

    <key>NSCameraUsageDescription</key>
<string>访问相机</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>使用期间一直访问您的位置</string>
<key>NSLocationUsageDescription</key>
<string>访问您的位置</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>使用期间访问您的位置</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>访问相册</string>

当然还有其他的权限,请参考 https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html