
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-voximplant
Advanced tools
VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.
Voximplant Mobile SDK module for React Native. It lets developers embed realtime voice and video communication into React Native apps and works together with Voximplant cloud platform. The SDK uses WebRTC for media processing.
You can get the demo app from http://github.com/voximplant/react-native-demo
React Native >= 0.47.0
yarn add react-native-voximplant
React Native 0.60+
CLI autolink feature links the module while building the app.
Make sure you have "React Native" project created with react-native init
Open or create ios/Podfile and add the following dependencies. Please use demo project Podfile ad a reference.
pod 'react-native-voximplant', path: '../node_modules/react-native-voximplant'
Add use_frameworks! at the top of your target configuration.
Note: since the version 1.6.0, use_frameworks! is no longer mandatory.
Run pod install from <your_project>/ios/
Start XCode and open generated <your_project>.xcworkspace
Check if there is no *.xcodeproj in the project navigation (see the Libraries section). In case of any please remove them.
Since React dependencies are added via Podfile, double integration of its modules may lead to unpredictable/incorrect behavior of an application.
Run your project (Cmd+R)
React Native 0.60+
CLI autolink feature links the module while building the app.
React Native <= 0.59
Run react-native link react-native-voximplant
react-native initandroid/app/build.gradle file and add the following lines to ‘android’ section:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
gradle sync command in Android Studio, then follow the provided hints.
Open the android/build.gradle file and update the Android plugin for gradle:
dependencies {
// use the latest available version
classpath 'com.android.tools.build:gradle:3.1.3'
}
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
react-native link command to link react-native-voximplant Android dependency OR perform the following steps:
Open up android/app/main/java/[...]/MainApplication.java
Add import com.voximplant.reactnative.VoxImplantReactPackage; to the imports at the top of the file
Add new VoxImplantReactPackage() to the list returned by the getPackages() method
Append the following lines to android/settings.gradle:
include ':react-native-voximplant'
project(':react-native-voximplant').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-voximplant/android')
Insert the following lines inside the dependencies block in android/app/build.gradle:
compile project(':react-native-voximplant')
You will need free Voximplant developer account setup for making and receiving calls using the SDK. Learn more at the Getting started page.
Official guides:
support@voximplant.comFAQs
VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.
The npm package react-native-voximplant receives a total of 183 weekly downloads. As such, react-native-voximplant popularity was classified as not popular.
We found that react-native-voximplant demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.