Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: react-native-webrtc/react-native-callkeep
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.1.1
Choose a base ref
...
head repository: react-native-webrtc/react-native-callkeep
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -10,3 +10,4 @@ Since react-native-callkit only targets iOS devices, we created react-native-cal
Linus Unnebäck <linus@folkdatorn.se>
Geraint White <mail@geraintwhite.co.uk>
Samuel Bégin
Jonas Swiatek <jswiatek@telzio.com>
20 changes: 20 additions & 0 deletions MIGRATION_v3_v4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Migration from CallKeep v3 to v4

The `reportNewIncomingCall` method on iOS is now more consistent.

Please update your `AppDelegate.m` file with this new signature:

```objc
[RNCallKeep reportNewIncomingCall: uuidString
handle: handle
handleType: handleType
hasVideo: YES
localizedCallerName: localizedCallerName
supportsHolding: YES
supportsDTMF: YES
supportsGrouping: YES
supportsUngrouping: YES
fromPushKit: YES
payload: nil
withCompletionHandler: nil];
```
Loading