소스 검색

Add support for NSBluetoothAlwaysUsageDescription (iOS 13)

Mathieu Acthernoene 5 년 전
부모
커밋
ff797bc54e
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4
    1
      ios/BluetoothPeripheral/RNPermissionHandlerBluetoothPeripheral.m

+ 4
- 1
ios/BluetoothPeripheral/RNPermissionHandlerBluetoothPeripheral.m 파일 보기

@@ -13,7 +13,10 @@
13 13
 @implementation RNPermissionHandlerBluetoothPeripheral
14 14
 
15 15
 + (NSArray<NSString *> * _Nonnull)usageDescriptionKeys {
16
-  return @[@"NSBluetoothPeripheralUsageDescription"];
16
+  return @[
17
+    @"NSBluetoothPeripheralUsageDescription",
18
+    @"NSBluetoothAlwaysUsageDescription",
19
+  ];
17 20
 }
18 21
 
19 22
 + (NSString * _Nonnull)handlerUniqueId {