遇到這種情況?
首先去注冊郵箱里看下有沒有iTunes Store 發(fā)來的郵件肩杈。
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
那么可以根據(jù)提示修改plist 的鍵值 。
鑒于老版本適配 iOS10? 。查看一下相關(guān)文檔NSPhotoLibraryUsageDescription? NSMicrophoneUsageDescription ?那么根據(jù)相關(guān)提示 添加而后重新跑項目翻斟。則完美解決
附上:
<key>NSPhotoLibraryUsageDescription</key>
<string>此 App 需要您的同意才能讀取媒體資料庫</string>
<key>NSCameraUsageDescription</key>
<string>cameraDesciption</string>
<key>NSContactsUsageDescription</key>
<string>contactsDesciption</string>
<key>NSMicrophoneUsageDescription</key>
<string>microphoneDesciption</string>