自从Xcode升级到8版本以后,苹果针对 iOS10 以后版本,就开始要求在info里面配置各种权限key和value,否则即便你上传了app也会拒绝,即便你构建版本之后,也不会在苹果后台显示刚刚构建的版本,苹果那里会发邮件到你开发者账号邮箱,会说明具体原因。
<key>NSPhotoLibraryUsageDescription</key>
<string>App需要您的同意,才能访问相册</string>
<key>NSCameraUsageDescription</key>
<string>App需要您的同意,才能访问相机</string>
<key>NSMicrophoneUsageDescriptionApp</key>
<string>需要您的同意,才能访问麦克风</string>
<key>NSLocationUsageDescriptionApp</key>
<string>需要您的同意,才能访问位置</string>
<key>NSLocationWhenInUseUsageDescriptionApp</key>
<string>需要您的同意,才能在使用期间访问位置</string>
<key>NSLocationAlwaysUsageDescriptionApp</key>
<string>需要您的同意,才能始终访问位置</string>
<key>NSCalendarsUsageDescriptionApp</key>
<string>需要您的同意,才能访问日历</string>
<key>NSRemindersUsageDescriptionApp</key>
<string>需要您的同意,才能访问提醒事项</string>
<key>NSMotionUsageDescription App</key>
<string>需要您的同意,才能访问运动与健身</string>
<key>NSHealthUpdateUsageDescriptionApp</key>
<string>需要您的同意,才能访问健康更新</string>
<key>NSHealthShareUsageDescriptionApp</key>
<string>需要您的同意,才能访问健康分享</string>
<key>NSBluetoothPeripheralUsageDescriptionApp</key>
<string>需要您的同意,才能访问蓝牙</string>
<key>NSAppleMusicUsageDescriptionApp</key>
<string>需要您的同意,才能访问媒体资料库</string>
网友评论