File tree 2 files changed +19
-0
lines changed 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 27
27
continueUserActivity : (NSUserActivity *)userActivity
28
28
restorationHandler : (void (^)(NSArray * __nullable restorableObjects))restorationHandler ;
29
29
30
+ + (void )reportNewIncomingCall : (NSString *)uuidString
31
+ handle : (NSString *)handle
32
+ handleType : (NSString *)handleType
33
+ hasVideo : (BOOL )hasVideo
34
+ localizedCallerName : (NSString * _Nullable)localizedCallerName
35
+ fromPushKit : (BOOL )fromPushKit
36
+ payload : (NSDictionary * _Nullable)payload ;
37
+
30
38
+ (void )reportNewIncomingCall : (NSString *)uuidString
31
39
handle : (NSString *)handle
32
40
handleType : (NSString *)handleType
Original file line number Diff line number Diff line change @@ -333,6 +333,17 @@ + (void)endCallWithUUID:(NSString *)uuidString
333
333
}
334
334
}
335
335
336
+ + (void )reportNewIncomingCall : (NSString *)uuidString
337
+ handle : (NSString *)handle
338
+ handleType : (NSString *)handleType
339
+ hasVideo : (BOOL )hasVideo
340
+ localizedCallerName : (NSString * _Nullable)localizedCallerName
341
+ fromPushKit : (BOOL )fromPushKit
342
+ payload : (NSDictionary * _Nullable)payload
343
+ {
344
+ [RNCallKeep reportNewIncomingCall: uuidString handle: handle handleType: handleType hasVideo: hasVideo localizedCallerName: localizedCallerName fromPushKit: fromPushKit payload: payload withCompletionHandler: nil ];
345
+ }
346
+
336
347
+ (void )reportNewIncomingCall : (NSString *)uuidString
337
348
handle : (NSString *)handle
338
349
handleType : (NSString *)handleType
You can’t perform that action at this time.
0 commit comments