Updated openvidu-react-native with minor changes

This commit is contained in:
pabloFuente 2021-07-07 12:56:39 +02:00
parent 126284550d
commit f86de7806b
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ export default class App extends Component<Props> {
// --- 1) Get an OpenVidu object ---
this.OV = new OpenVidu();
this.OV.enableProdMode();
// this.OV.enableProdMode();
// --- 2) Init a session ---

View File

@ -7,7 +7,7 @@
"start:cache": "npm start -- --reset-cache",
"android": "react-native run-android",
"ios": "react-native run-ios",
"clean": "rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules && rm package-lock.json",
"clean": "rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules && rm -f package-lock.json",
"install-ov": "npm i openvidu-react-native-adapter-*.tgz",
"test": "jest"
},