Xcode上传App到AppStore没有构建版本呢

通过Application Loader 上传ipa文件后没有报错,上传完成后苹果构建版本Web页面上也没有任何反应. 

出现这种问题有可能是plist文件权限请求配置问题

一般情况下 plist文件中 使用默认的这三个权限申请就够了

NSCameraUsageDescription  :  Use Camera

NSMicrophoneUsageDescription  :  Use Microphone

NSPhotoLibraryUsageDescription  :  Use Photo Library

下面是汇总的权限列表 

麦克风权限:Privacy - Microphone Usage Description 是否允许使用你的麦克风?

相机权限: Privacy - Camera Usage Description 是否允许使用你的相机?

相册权限: Privacy - Photo Library Usage Description 是否允许访问你的媒体资料库?

通讯录权限: Privacy - Contacts Usage Description 是否允许访问你的通讯录?

蓝牙权限:Privacy - Bluetooth Peripheral Usage Description 是否许允使用蓝牙?

语音转文字权限:Privacy - Speech Recognition Usage Description 是否允许使用语音识别?

日历权限:Privacy - Calendars Usage Description 是否允许使用日历?

定位权限:Privacy - Location When In Use Usage Description 我们需要通过您的地理位置信息获取您周边的相关数据。

定位权限: Privacy - Location Always Usage Description 我们需要通过您的地理位置信息获取您周边的相关数据。



最重要的 还是翻阅苹果反馈给开发者账户的邮件 ,鬼知道为什么 我重新添加了这几个 KEY 就成功了

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.

Missing Info.plist key - This app attempts to access privacy-sensitive data

without a usage description. The app's Info.plist must contain an

NSCameraUsageDescription key with a string value explaining to the user how

the app uses this data.

Best regards,

你可能感兴趣的:(Xcode上传App到AppStore没有构建版本呢)