ソースを参照

Add NSBluetoothAlwaysUsageDescription for iOS 13

Need to add NSBluetoothAlwaysUsageDescription for iOS 13
Jessica 5 年 前
コミット
25d6396ada
No account linked to committer's email address
共有1 個のファイルを変更した4 個の追加0 個の削除を含む
  1. 4
    0
      README.md

+ 4
- 0
README.md ファイルの表示

@@ -203,6 +203,10 @@ If you need to submit your application to the AppStore, you need to add to your
203 203
 So before submitting your app to the App Store, make sure that in your `Info.plist` you have the following keys:
204 204
 
205 205
 ```xml
206
+<key>NSBluetoothAlwaysUsageDescription</key>
207
+<string>Some description</string>
208
+<!-- only need peripheral if target is less than iOS 13 -->
209
+<!-- https://developer.apple.com/documentation/bundleresources/information_property_list/nsbluetoothperipheralusagedescription -->
206 210
 <key>NSBluetoothPeripheralUsageDescription</key>
207 211
 <string>Some description</string>
208 212
 <key>NSCalendarsUsageDescription</key>