Merge branch 'develop'

This commit is contained in:
csantosm 2021-01-14 15:45:08 +01:00
commit 59438d2bf9
6 changed files with 11198 additions and 18 deletions

View File

@ -97,6 +97,7 @@ export default class App extends Component<Props> {
// --- 1) Get an OpenVidu object ---
this.OV = new OpenVidu();
this.OV.enableProdMode();
// --- 2) Init a session ---
@ -399,7 +400,7 @@ export default class App extends Component<Props> {
},
})
.then((response) => {
console.log('CREATE SESION', response);
console.log('SESSION ' + response.data.id + ' CREATED');
resolve(response.data.id);
})
.catch((response) => {
@ -459,7 +460,7 @@ export default class App extends Component<Props> {
},
})
.then((response) => {
console.log('TOKEN', response);
console.log('TOKEN CREATED: ', response.data.token);
resolve(response.data.token);
})
.catch((error) => reject(error));

View File

@ -178,12 +178,12 @@ android {
}
packagingOptions {
pickFirst 'lib/x86_64/libjsc.so'
pickFirst 'lib/arm64-v8a/libjsc.so'
pickFirst "lib/armeabi-v7a/libc++_shared.so"
pickFirst "lib/arm64-v8a/libc++_shared.so"
pickFirst "lib/x86/libc++_shared.so"
pickFirst "lib/x86_64/libc++_shared.so"
pickFirst '**/armeabi-v7a/libc++_shared.so'
pickFirst '**/x86/libc++_shared.so'
pickFirst '**/arm64-v8a/libc++_shared.so'
pickFirst '**/x86_64/libc++_shared.so'
pickFirst '**/x86/libjsc.so'
pickFirst '**/armeabi-v7a/libjsc.so'
}
}

View File

@ -182,8 +182,8 @@ PODS:
- React-cxxreact (= 0.62.2)
- React-jsi (= 0.62.2)
- React-jsinspector (0.62.2)
- react-native-webrtc (1.84.0):
- React
- react-native-webrtc (1.87.1):
- React-Core
- React-RCTActionSheet (0.62.2):
- React-Core/RCTActionSheetHeaders (= 0.62.2)
- React-RCTAnimation (0.62.2):
@ -350,7 +350,7 @@ SPEC CHECKSUMS:
React-jsi: b6dc94a6a12ff98e8877287a0b7620d365201161
React-jsiexecutor: 1540d1c01bb493ae3124ed83351b1b6a155db7da
React-jsinspector: 512e560d0e985d0e8c479a54a4e5c147a9c83493
react-native-webrtc: 9268ae9a2bc9730796b0968d012327e92c392adf
react-native-webrtc: 40eca4cac200fda34fb843da07e3402211bbbd10
React-RCTActionSheet: f41ea8a811aac770e0cc6e0ad6b270c644ea8b7c
React-RCTAnimation: 49ab98b1c1ff4445148b72a3d61554138565bad0
React-RCTBlob: a332773f0ebc413a0ce85942a55b064471587a71
@ -365,4 +365,4 @@ SPEC CHECKSUMS:
PODFILE CHECKSUM: fde0fd9dfdbc2b8abb1c583b3a8bf064201745a8
COCOAPODS: 1.9.3
COCOAPODS: 1.10.0

View File

@ -480,7 +480,7 @@
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-openvidu_react_native-openvidu_react_nativeTests/Pods-openvidu_react_native-openvidu_react_nativeTests-frameworks.sh",
"${PODS_ROOT}/../../node_modules/react-native-webrtc/ios/WebRTC.framework",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/WebRTC/WebRTC.framework/WebRTC",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
@ -520,7 +520,7 @@
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-openvidu_react_native/Pods-openvidu_react_native-frameworks.sh",
"${PODS_ROOT}/../../node_modules/react-native-webrtc/ios/WebRTC.framework",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/WebRTC/WebRTC.framework/WebRTC",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
@ -716,7 +716,7 @@
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.openvidu-react-nativeo";
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.openvidu-react-";
PRODUCT_NAME = openvidu_react_native;
VERSIONING_SYSTEM = "apple-generic";
};
@ -739,7 +739,7 @@
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.openvidu-react-nativeo";
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.openvidu-react-";
PRODUCT_NAME = openvidu_react_native;
VERSIONING_SYSTEM = "apple-generic";
};

11179
openvidu-react-native/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -12,9 +12,9 @@
"test": "jest"
},
"dependencies": {
"axios": "0.19.2",
"axios": "0.21.1",
"events": "3.2.0",
"openvidu-react-native-adapter": "file:openvidu-react-native-adapter-2.16.1.tgz",
"openvidu-react-native-adapter": "file:openvidu-react-native-adapter-2.17.0-beta1.tgz",
"react": "16.13.1",
"react-native": "0.62.2"
},