react-native-callkit
Advanced tools
Comparing version 1.3.1 to 1.3.2
@@ -69,5 +69,5 @@ 'use strict'; | ||
static displayIncomingCall(uuid, handle, handleType = 'number', hasVideo = false) { | ||
static displayIncomingCall(uuid, handle, handleType = 'number', hasVideo = false, localizedCallerName?: String) { | ||
if (Platform.OS !== 'ios') return; | ||
_RNCallKit.displayIncomingCall(uuid, handle, handleType, hasVideo); | ||
_RNCallKit.displayIncomingCall(uuid, handle, handleType, hasVideo, localizedCallerName); | ||
} | ||
@@ -74,0 +74,0 @@ |
{ | ||
"name": "react-native-callkit", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "iOS 10 CallKit Framework For React Native", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -46,2 +46,15 @@ # React Native CallKit - iOS >= 10.0 only | ||
### Info.plist | ||
Add `voip` under `UIBackgroundModes` | ||
Note that it must be done via editing `Info.plist` as in Xcode 9 there is no `voip` option in `Capabilities`. | ||
``` | ||
<key>UIBackgroundModes</key> | ||
<array> | ||
<string>voip</string> | ||
</array> | ||
``` | ||
### Add Frameworks | ||
@@ -48,0 +61,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43396
317
10