Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ android {

dependencies {
implementation 'com.facebook.react:react-native:+'
implementation 'com.github.jiangdongguo.AndroidUSBCamera:libausbc:3.3.3'
api 'org.jitsi:webrtc:118.+'
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,8 @@ class GetUserMediaImpl {
}

if (camera2supported) {
if (UVCCamera2Enumerator.isSupported(reactContext)) {
Log.d(TAG, "Creating video capturer using Camera2 API with UVC support.");
cameraEnumerator = new UVCCamera2Enumerator(reactContext);
} else {
Log.d(TAG, "Creating video capturer using Camera2 API.");
cameraEnumerator = new Camera2Enumerator(reactContext);
}
Log.d(TAG, "Creating video capturer using Camera2 API.");
cameraEnumerator = new Camera2Enumerator(reactContext);
} else {
Log.d(TAG, "Creating video capturer using Camera1 API.");
cameraEnumerator = new Camera1Enumerator(false);
Expand Down
122 changes: 0 additions & 122 deletions android/src/main/java/com/oney/WebRTCModule/UVCCamera2Enumerator.java

This file was deleted.

114 changes: 0 additions & 114 deletions android/src/main/java/com/oney/WebRTCModule/UVCVideoCapturer.java

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daily-co/react-native-webrtc",
"version": "118.0.3-daily.3",
"version": "118.0.3-daily.4",
"repository": {
"type": "git",
"url": "git+https://github.com/daily-co/react-native-webrtc.git"
Expand Down