#苹果官方回复邮件
-------- Forwarding messages -------- From: "iTunes Store" itunesconnect@apple.com Date: 2017-02-28 18:16:15 To: xxxx@126.com Subject: iTunes Connect: Your app "xxxx" (Apple ID: xxxx) has one or more issues Dear developer,
We have discovered one or more issues with your recent delivery for "xxxxx". 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 NSCalendarsUsageDescription 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 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 NSBluetoothPeripheralUsageDescription 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.
Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSMotionUsageDescription 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
##问题1.打包上传失败,邮件会有提醒
###(可能,因为邮箱我没有授权,是通过打苹果官方客服,了解到的,客服回复说会发邮件 -- 打包注意事项1.开发者账号的邮箱授权)
##问题2.添加系统访问权限提醒
###项目中已有NSLocationAlwaysUsageDescription NSLocationWhenInUseUsageDescription两项。拼过反馈需要添加 1.NSCalendarsUsageDescription 2.NSPhotoLibraryUsageDescription 3.NSBluetoothPeripheralUsageDescription 4.NSMicrophoneUsageDescription 5.NSCameraUsageDescription 6.NSMotionUsageDescription
#总结 ##需要10项授权 文案暂定 <key>NSAppleMusicUsageDescription</key> <string>允许使用媒体资料库</string> <key>NSBluetoothPeripheralUsageDescription</key> <string>允许使用蓝牙</string> <key>NSCalendarsUsageDescription</key> <string>允许访问日历</string> <key>NSCameraUsageDescription</key> <string>允许访问相机</string> <key>NSContactsUsageDescription</key> <string>允许访问通讯录</string> <key>NSLocationAlwaysUsageDescription</key> <string>允许始终访问该设备的位置信息</string> <key>NSLocationWhenInUseUsageDescription</key> <string>允许使用应用期间访问该设备的位置信息</string> <key>NSMicrophoneUsageDescription</key> <string>允许访问麦克风</string> <key>NSMotionUsageDescription</key> <string>允许访问运动数据</string> <key>NSPhotoLibraryUsageDescription</key> <string>允许访问相册</string>





