
Security News
npm Tooling Bug Incorrectly Marks One-Character Packages as Security Holders
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.
@ringcentral/rcv-react-native-sdk
Advanced tools
RingCentral Video React Native SDK
# yarn
yarn add @ringcentral/rcv-react-native-sdk
# npm
npm install @ringcentral/rcv-react-native-sdk
# pnpm
pnpm add @ringcentral/rcv-react-native-sdk
For each platform (iOS/Android) you plan to use, follow one of the options for the corresponding platform.
Make sure android/build.gradle minSdkVersion > 21
Update ./android/app/src/main/AndroidManifest.xml
<manifest>
...
<!-- set following config to AndroidManifest.xml-->
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
<uses-feature android:name="android.hardware.microphone" android:required="false" />
...
</manifest>
Add rcv-react-native-sdk dependencies in Podfile
pod 'rcv-react-native-sdk' , :path => '../node_modules/@ringcentral/rcv-react-native-sdk'
Then cd ios pod install
xcworkspace file of your iOS project with Xcode:Set Validate workspace to Yes at Target -> Build Settings -> Build Options
Add $(PROJECT_DIR)/../node_modules/@ringcentral/rcv-react-native-sdk/ios/Frameworks into Framework Search Paths at Target -> Build Settings -> Search Paths
Add rcsdk.framework at Target -> General -> Frameworks, Libraries, and Embedded Content
./node_modules/@ringcentral/rcv-react-native-sdk/ios/FrameworksImport SDK
import { EngineEvent, RcvEngine } from '@ringcentral/rcv-react-native-sdk';
Init RcvEngine
// ...
const engine = await RcvEngine.create(clientId, clientSecret);
await engine.setAuthToken(JSON.stringify(userToken), true);
// ...
Events Listener
// ...
engine.on(EngineEvent.MEETING_JOINED, e => {
console.log('receive join meeting success event', e);
console.log('meeting id', e.meetingId);
});
engine.on(EngineEvent.MEETING_LEFT, e => {
console.log('receive leave meeting success event', e);
});
// ...
Start Instant Meeting
await engine.startInstantMeeting();
Join Meeting
await engine.joinMeeting(meetingId);
FAQs
RingCentral Video React Native SDK
The npm package @ringcentral/rcv-react-native-sdk receives a total of 15 weekly downloads. As such, @ringcentral/rcv-react-native-sdk popularity was classified as not popular.
We found that @ringcentral/rcv-react-native-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.

Research
/Security News
Newer packages in this compromise use native extensions and .pth loaders to execute JavaScript stealers in developer environments.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.