NSBluetoothAlwaysUsageDescription required, but bluetooth is not used

前端 未结 10 1873
青春惊慌失措
青春惊慌失措 2021-01-01 18:28

In my ios app with new Xcode 11 GM Seed 2 after deploy, apple returned error: ITMS-90683: Missing Purpose String in Info.plist with NSBluetoothAlwaysUsageDe

10条回答
  •  长发绾君心
    2021-01-01 19:11

    I had this exact same issue today. When I did a grep search I found that there is some reference to CoreBluetooth.framework inside my project.pbxproj

    I removed the reference and building the app went fine. Uploaded to Apple and it got through so this worked for me.

    To search use the following command

    grep -r -a CoreBluetooth.framework ProjectFolder
    

提交回复
热议问题