Skip to content

Commit 41f2dda

Browse files
authored
Merge pull request #20 from ant-media/implementMicrophoneToggle
Add ability to mute/unmute mic and open/close camera
2 parents f1ff4b2 + 17757c8 commit 41f2dda

File tree

366 files changed

+2966
-67576
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

366 files changed

+2966
-67576
lines changed

example/android/app/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ task copyDownloadableDepsToLibs(type: Copy) {
309309
}
310310

311311
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
312+
apply from: file("../../node_modules/react-native-vector-icons/fonts.gradle")
312313

313314
def isNewArchitectureEnabled() {
314315
// To opt-in for the New Architecture, you can either:

example/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { AppRegistry } from 'react-native';
2-
import App from './src/App';
2+
//import App from './src/App';
33
//import App from './src/Play';
44
//import App from './src/Peer';
5-
//import App from './src/conference';
5+
import App from './src/Conference';
66
import { name as appName } from './app.json';
77

88
AppRegistry.registerComponent(appName, () => App);

example/package-lock.json

+158
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

+2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@
1515
"react-native": "0.68.2",
1616
"react-native-eject": "^0.2.0",
1717
"react-native-incall-manager": "^4.0.0",
18+
"react-native-vector-icons": "^10.0.3",
1819
"react-native-webrtc": "111.0.0"
1920
},
2021
"devDependencies": {
2122
"@babel/core": "^7.18.2",
2223
"@babel/runtime": "^7.18.3",
2324
"@types/react-native-incall-manager": "^3.2.1",
25+
"@types/react-native-vector-icons": "^6.4.18",
2426
"babel-plugin-module-resolver": "^4.0.0",
2527
"metro-react-native-babel-preset": "^0.71.0"
2628
}

0 commit comments

Comments
 (0)