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.
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.
Once these issues have been corrected, you can then redeliver the corrected binary.
大概意思就是有需要設(shè)置的隱私權(quán)限沒(méi)有設(shè)置,這里是藍(lán)牙的權(quán)限問(wèn)題
右擊Info.plist文件 >Open As >Source Code 打開(kāi)復(fù)制以下你在應(yīng)用中使用的隱私權(quán)限設(shè)置(描述自己修改)
<key>NSVideoSubscriberAccountUsageDescription</key>
<string></string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>藍(lán)牙權(quán)限</string>
<key>NSSpeechRecognitionUsageDescription</key>
<string>語(yǔ)音識(shí)別權(quán)限</string>
<key>NSSiriUsageDescription</key>
<string>Siri權(quán)限</string>
<key>NSRemindersUsageDescription</key>
<string></string>
<key>NSPhotoLibraryUsageDescription</key>
<string>相冊(cè)權(quán)限</string>
<key>kTCCServiceMediaLibrary</key>
<string></string>
<key>NSMotionUsageDescription</key>
<string>運(yùn)動(dòng)權(quán)限</string>
<key>NSMicrophoneUsageDescription</key>
<string>麥克風(fēng)權(quán)限</string>
<key>NSAppleMusicUsageDescription</key>
<string>音樂(lè)權(quán)限</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>地理位置權(quán)限</string>
<key>NSLocationUsageDescription</key>
<string>地理位置權(quán)限</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>地理位置權(quán)限</string>
<key>NSHomeKitUsageDescription</key>
<string></string>
<key>NSHealthUpdateUsageDescription</key>
<string>健康權(quán)限</string>
<key>NSHealthShareUsageDescription</key>
<string>健康權(quán)限</string>
<key>NSContactsUsageDescription</key>
<string>通訊錄權(quán)限</string>
<key>NSCameraUsageDescription</key>
<string>攝像頭權(quán)限</string>
<key>NSCalendarsUsageDescription</key>
<string>日歷權(quán)限</string>
20160921170648473-1.png