Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-callkit

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-callkit - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

4

index.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc