xcode Version 8.2.1 (8C1002) 打包后到iTunes上不显示

遇到这种情况 

首先去注册邮箱里看下有没有iTunes Store 发来的邮件。


Dear developer,

We have discovered one or more issues with your recent delivery for "项目名字". To process your delivery, the following issues must be corrected:

Missing Info.plist key- This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data.

Missing Info.plist key- This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSMicrophoneUsageDescription key with a string value explaining to the user how the app uses this data.

Once these issues have been corrected, you can then redeliver the corrected binary.

Regards,

The App Store team



那么可以根据提示修改plist 的键值 。

鉴于老版本适配 iOS10  。查看一下相关文档NSPhotoLibraryUsageDescription  NSMicrophoneUsageDescription  那么根据相关提示 添加而后重新跑项目。则完美解决

附上:



<key>NSPhotoLibraryUsageDescription</key>

<string>此 App 需要您的同意才能读取媒体资料库</string>


<key>NSCameraUsageDescription</key>

<string>cameraDesciption</string>

<key>NSContactsUsageDescription</key>

<string>contactsDesciption</string>

<key>NSMicrophoneUsageDescription</key>

<string>microphoneDesciption</string>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容