├── .bundle └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── README.md ├── __tests__ └── App.test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── videocall │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── package.json │ │ ├── raw │ │ └── ringtone.mp3 │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── codemagic.yaml ├── index.js ├── ios ├── .xcode.env ├── Podfile ├── videoCall.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── videoCall.xcscheme ├── videoCall │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── PrivacyInfo.xcprivacy │ └── main.m └── videoCallTests │ ├── Info.plist │ └── videoCallTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── src ├── components │ ├── CallControls.tsx │ ├── LoginForm.tsx │ └── VideoStreamView.tsx ├── hook │ ├── api.ts │ ├── useSocketConnection.ts │ ├── useUser.tsx │ └── useWebRTC.ts ├── localNotification │ └── LocalNotification.ts ├── remoteNotification │ └── RemoteNotification.ts └── screens │ ├── LoadingScreen.tsx │ ├── Login.tsx │ └── VideoCallScreen.tsx └── tsconfig.json /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/videocall/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/java/com/videocall/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/videocall/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/java/com/videocall/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/package.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/ringtone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/raw/ringtone.mp3 -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /codemagic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/codemagic.yaml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/videoCall.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/videoCall.xcodeproj/xcshareddata/xcschemes/videoCall.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall.xcodeproj/xcshareddata/xcschemes/videoCall.xcscheme -------------------------------------------------------------------------------- /ios/videoCall/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall/AppDelegate.h -------------------------------------------------------------------------------- /ios/videoCall/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall/AppDelegate.mm -------------------------------------------------------------------------------- /ios/videoCall/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/videoCall/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/videoCall/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall/Info.plist -------------------------------------------------------------------------------- /ios/videoCall/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/videoCall/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/videoCall/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCall/main.m -------------------------------------------------------------------------------- /ios/videoCallTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCallTests/Info.plist -------------------------------------------------------------------------------- /ios/videoCallTests/videoCallTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/ios/videoCallTests/videoCallTests.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/package.json -------------------------------------------------------------------------------- /src/components/CallControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/components/CallControls.tsx -------------------------------------------------------------------------------- /src/components/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/components/LoginForm.tsx -------------------------------------------------------------------------------- /src/components/VideoStreamView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/components/VideoStreamView.tsx -------------------------------------------------------------------------------- /src/hook/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/hook/api.ts -------------------------------------------------------------------------------- /src/hook/useSocketConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/hook/useSocketConnection.ts -------------------------------------------------------------------------------- /src/hook/useUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/hook/useUser.tsx -------------------------------------------------------------------------------- /src/hook/useWebRTC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/hook/useWebRTC.ts -------------------------------------------------------------------------------- /src/localNotification/LocalNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/localNotification/LocalNotification.ts -------------------------------------------------------------------------------- /src/remoteNotification/RemoteNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/remoteNotification/RemoteNotification.ts -------------------------------------------------------------------------------- /src/screens/LoadingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/screens/LoadingScreen.tsx -------------------------------------------------------------------------------- /src/screens/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/screens/Login.tsx -------------------------------------------------------------------------------- /src/screens/VideoCallScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/src/screens/VideoCallScreen.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darshan15062002/video-call-react-native/HEAD/tsconfig.json --------------------------------------------------------------------------------