File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 2727continueUserActivity : (NSUserActivity *)userActivity
2828 restorationHandler : (void (^)(NSArray * __nullable restorableObjects))restorationHandler ;
2929
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+
3038+ (void )reportNewIncomingCall : (NSString *)uuidString
3139 handle : (NSString *)handle
3240 handleType : (NSString *)handleType
Original file line number Diff line number Diff line change @@ -333,6 +333,17 @@ + (void)endCallWithUUID:(NSString *)uuidString
333333 }
334334}
335335
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+
336347+ (void )reportNewIncomingCall : (NSString *)uuidString
337348 handle : (NSString *)handle
338349 handleType : (NSString *)handleType
You can’t perform that action at this time.
0 commit comments