Bluetooth NSBluetoothPeripheralUsageDescription A message that tells the user why the app is requesting the ability to connect to Bluetooth peripherals. Name: Privacy - Bluetooth Peripheral Usage Description Deprecated Current page is NSBluetoothAlwaysUsageDescription ...
刚开始看到这个被拒理由觉得无厘头,因为蓝牙的这个权限之前一直都没有问题,而且这个提示的“NSBluetoothAlwaysUsageDescription”之前没遇到过,如图所示: 在plist文件里面输入开头字母也没有提示,以为还是蓝牙描述的问题,结果修改了蓝牙描述文字,提交版本,依然被拒,而且再提交几次,版本直接被苹果后台删了,找不到了,如图所...
登录邮箱后发现,原来蓝牙权限的旧Key(NSBluetoothPeripheralUsageDescription)给废弃掉了,iOS13之后苹果强制要求使用新的Key(NSBluetoothAlwaysUsageDescription),但是传包时旧的Key也要保留,也就是说NSBluetoothPeripheralUsageDescription、NSBluetoothAlwaysUsageDescription这两个Key都得要,然后打包就没问题了。 新加的Key...
现在需要修改为: Privacy - Bluetooth Always Usage Description 附带开发者官网地址:https://developer.apple.com/documentation/uikit/protecting_the_user_s_privacy/accessing_protected_resources 如果你目前使用的是Xcode最新支持的Deployment Target iOS 13+的Beta版,那这个plist选项必须修改为最新的,如果仍使用之前的...
在我使用新的Xcode 11 GM Seed 2部署iOS应用程序后,苹果返回了错误:ITMS-90683:Info.plist中缺少用途字符串,其中包括NSBluetoothAlwaysUsageDescription。 阅读https://developer.apple.com/documentation/bundleresources/information_property_list/nsbluetoothalwaysusagedescription?language=objc。 问题在于我没有在我的应...
ITMS-90683: Missing Purpose String in Info.plist - Your app's code references one or more APIs that access sensitive user data. The app's Info.plist file should contain a NSBluetoothAlwaysUsageDescription key with a user-facing purpose string explaining clearly and completely why your app needs...
ITMS-90683: Missing Purpose String in Info.plist - Your app's code references one or more APIs that access sensitive user data. The app's Info.plist file should contain a NSBluetoothAlwaysUsageDescription key with a user-facing purpose string explaining clearly and completely why your app needs...
Apple 弃用了 NSBluetoothPeripheralUsageDescription 属性,转而支持 NSBluetoothAlwaysUsageDescription。 在此处查看详细信息: 指向Apple 文档的链接 如果您使用蓝牙, 只需将其添加到您的 Info.plist 文件中: <key>NSBluetoothAlwaysUsageDescription</key> <string>Our app uses bluetooth to find, connect and transfer...
最近两天,苹果更新了新设备,也更新了新系统,包括Xcode也更新了,每年苹果发布新品和新系统都会引起一些...
See Also Bluetooth property list keyNSBluetoothAlwaysUsageDescription A message that tells the user why the app needs access to Bluetooth. Name:Privacy - Bluetooth Always Usage Description