ITMS-90683: Missing Purpose String in Info.plist
iOS 빌드를 업로드 하고 받은 에러
위 경우는 NSBluetoothAlwaysUsageDescription, NSBluetoothPeripheralUsageDescription로
Bluetooth 관련 2가지가 추가로 떴다.
아래와 같이 plist에 Privacy 관련 Description 2개 추가해줌
-----------------------------------------------------------------------------------------------
<key>NSBluetoothAlwaysUsageDescription</key>
<string>App would like to use your bluetooth for communication purposes</string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>App would like to use your bluetooth for communication purposes</string>
-----------------------------------------------------------------------------------------------
[출처]
NSBluetoothAlwaysUsageDescription required, but bluetooth is not used
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 NSBluetoothAlwaysUsageDescription. https://developer.apple.com/
stackoverflow.com