How to include rn-jitsi-meet module into your React Native project
yarn add react-native-svg react-native-video [email protected] react-native-background-timer @react-native-async-storage/async-storage
yarn add rn-jitsi-meet
cd $(PROJECT_ROOT)/ios
pod install
Add permissions with usage descriptions to your app Info.plist:
<!-- Required with iOS 10 and higher -->
<key>NSCameraUsageDescription</key>
<string>Your message to user when the camera is accessed for the first time</string>
<!-- Required with iOS 10 and higher -->
<key>NSMicrophoneUsageDescription</key>
<string>Your message to user when the microphone is accessed for the first time</string>
Add permissions to your app android/app/src/main/AndroidManifest.xml file:
<!-- Required -->
<uses-permission android:name="android.permission.CAMERA" />
<!-- Required -->
<uses-permission android:name="android.permission.RECORD_AUDIO"/>