├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ ├── release │ │ ├── app-release.apk │ │ └── output.json │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── webrtc_app │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── webrtc_app │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── 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 ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── webrtc_app-tvOS │ └── Info.plist ├── webrtc_app-tvOSTests │ └── Info.plist ├── webrtc_app.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── webrtc_app-tvOS.xcscheme │ │ └── webrtc_app.xcscheme ├── webrtc_app.xcworkspace │ └── contents.xcworkspacedata ├── webrtc_app │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── webrtc_appTests │ ├── Info.plist │ └── webrtc_appTests.m ├── metro.config.js ├── package.json ├── src ├── assets │ └── images │ │ ├── change-camera.png │ │ ├── end-call.png │ │ ├── mute.png │ │ └── unmute.png ├── components │ └── IconButton.tsx ├── constants │ └── icons.ts ├── helpers │ ├── AsyncStorage.ts │ └── RootNavigation.ts ├── index.tsx ├── interfaces │ ├── index.ts │ └── navigation.ts ├── screens │ ├── Call.tsx │ ├── Entrance.tsx │ ├── Home.tsx │ └── Users.tsx ├── server │ └── index.ts └── store │ └── MainProvider.tsx ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/release/app-release.apk -------------------------------------------------------------------------------- /android/app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/release/output.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/webrtc_app/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/debug/java/com/webrtc_app/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/webrtc_app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/java/com/webrtc_app/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/webrtc_app/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/java/com/webrtc_app/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/webrtc_app-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/webrtc_app-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/webrtc_app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/webrtc_app.xcodeproj/xcshareddata/xcschemes/webrtc_app-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app.xcodeproj/xcshareddata/xcschemes/webrtc_app-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/webrtc_app.xcodeproj/xcshareddata/xcschemes/webrtc_app.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app.xcodeproj/xcshareddata/xcschemes/webrtc_app.xcscheme -------------------------------------------------------------------------------- /ios/webrtc_app.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/webrtc_app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app/AppDelegate.h -------------------------------------------------------------------------------- /ios/webrtc_app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app/AppDelegate.m -------------------------------------------------------------------------------- /ios/webrtc_app/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/webrtc_app/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/webrtc_app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app/Info.plist -------------------------------------------------------------------------------- /ios/webrtc_app/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/webrtc_app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_app/main.m -------------------------------------------------------------------------------- /ios/webrtc_appTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_appTests/Info.plist -------------------------------------------------------------------------------- /ios/webrtc_appTests/webrtc_appTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/ios/webrtc_appTests/webrtc_appTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/images/change-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/assets/images/change-camera.png -------------------------------------------------------------------------------- /src/assets/images/end-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/assets/images/end-call.png -------------------------------------------------------------------------------- /src/assets/images/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/assets/images/mute.png -------------------------------------------------------------------------------- /src/assets/images/unmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/assets/images/unmute.png -------------------------------------------------------------------------------- /src/components/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/components/IconButton.tsx -------------------------------------------------------------------------------- /src/constants/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/constants/icons.ts -------------------------------------------------------------------------------- /src/helpers/AsyncStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/helpers/AsyncStorage.ts -------------------------------------------------------------------------------- /src/helpers/RootNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/helpers/RootNavigation.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/interfaces/index.ts -------------------------------------------------------------------------------- /src/interfaces/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/interfaces/navigation.ts -------------------------------------------------------------------------------- /src/screens/Call.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/screens/Call.tsx -------------------------------------------------------------------------------- /src/screens/Entrance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/screens/Entrance.tsx -------------------------------------------------------------------------------- /src/screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/screens/Home.tsx -------------------------------------------------------------------------------- /src/screens/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/screens/Users.tsx -------------------------------------------------------------------------------- /src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/server/index.ts -------------------------------------------------------------------------------- /src/store/MainProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/src/store/MainProvider.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metehankurucu/react-native-video-calling-app/HEAD/yarn.lock --------------------------------------------------------------------------------