skip to Main Content

CocoaPods could not find compatible versions for pod "react-native-webrtc" – React native

Package.json { "name": "Speed_Dating", "version": "0.0.1", "private": true, "scripts": { "android": "react-native run-android", "ios": "react-native run-ios --simulator="iPhone 13 Pro Max"", "start": "react-native start", "test": "jest", "lint": "eslint ." }, "dependencies": { "@react-native-async-storage/async-storage": "^1.15.14", "@react-native-community/checkbox": "^0.5.9", "@react-native-community/datetimepicker": "^5.1.0", "@react-native-community/geolocation": "^2.0.2", "@react-native-community/viewpager":…

VIEW QUESTION

Why WebRTC live video is getting freezes in webview react native?

If I touch the screen then only video plays. I have already set mediaPlaybackRequiresUserAction={false}. <View style={styles.TopContainer}> <AppBar props={AppBarContent}/> { url !== null ? <WebView style={{height:'100%', width:'100%', backgroundColor:"red"}} source={{ uri: url }} // allowsInlineMediaPlayback={true} mediaPlaybackRequiresUserAction={false} mediaCapturePermissionGrantType="grantIfSameHostElsePrompt" // allowsProtectedMedia={true} // allowsAirPlayForMediaPlayback={true} //…

VIEW QUESTION

My another React Native was working fine upto 4 November, but now throwing an exception while Running yarn android with different Error

Prior to 4 November it was working fine and now when I am trying to build it by running yarn android but it is showing me Error: Command failed: ./gradlew app:installDebug -PreactNativeDevServerPort=8081 /Users/dev/Desktop/Abc Projects/aargee/node_modules/react-native-webrtc/android/src/main/java/com/oney/WebRTCModule/VideoTrackAdapter.java:5: error: cannot access VideoFrame import org.webrtc.VideoFrame;…

VIEW QUESTION
Back To Top
Search