├── .buckconfig ├── .env.sample ├── .eslintrc.yml ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .prettierrc.yml ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── .watchmanconfig ├── App.js ├── CHANGELOG ├── CONTRIBUTORS ├── README.md ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .project │ ├── BUCK │ ├── bin │ │ ├── .project │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── ic_launcher-web.png │ │ │ └── res │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── AntDesign.ttf │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── ch │ │ │ │ └── cern │ │ │ │ └── dialmobile │ │ │ │ ├── MainActivity.class │ │ │ │ └── MainApplication.class │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── raw │ │ │ ├── ringbacktone.wav │ │ │ ├── ringbacktone_1.wav │ │ │ └── ringtone.wav │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── network_security_config.xml │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── ic_launcher-web.png │ │ └── res │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── ch │ │ │ └── cern │ │ │ └── dialmobile │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── network_security_config.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── assets └── assets_CERN-logo_outline.png ├── babel.config.js ├── bgMessaging.js ├── configure-callkeep.js ├── configure-tone-api.js ├── docs ├── CONTRIBUTING.md ├── all-screenshots.md ├── git-basics.md └── screenshots │ ├── call-forwarding.png │ ├── contacts-list.png │ ├── dial-pad.png │ ├── login-screen.png │ ├── number-selector.png │ ├── on-call.png │ ├── profile-details.png │ ├── recent-calls.png │ └── settings.png ├── firebase-notifications.js ├── index.js ├── ios ├── CERNPhoneApp-tvOS │ └── Info.plist ├── CERNPhoneApp-tvOSTests │ └── Info.plist ├── CERNPhoneApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── CERNPhoneApp-tvOS.xcscheme │ │ └── CERNPhoneApp.xcscheme ├── CERNPhoneApp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CERNPhoneApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── CERNPhoneApp.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── CERNPhoneAppTests │ ├── CERNPhoneAppTests.m │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ ├── Private │ │ ├── React │ │ │ └── React │ │ │ │ ├── RCTAccessibilityManager.h │ │ │ │ ├── RCTActivityIndicatorView.h │ │ │ │ ├── RCTActivityIndicatorViewManager.h │ │ │ │ ├── RCTAlertManager.h │ │ │ │ ├── RCTAnimationType.h │ │ │ │ ├── RCTAppState.h │ │ │ │ ├── RCTAssert.h │ │ │ │ ├── RCTAsyncLocalStorage.h │ │ │ │ ├── RCTAutoInsetsProtocol.h │ │ │ │ ├── RCTBorderDrawing.h │ │ │ │ ├── RCTBorderStyle.h │ │ │ │ ├── RCTBridge+Private.h │ │ │ │ ├── RCTBridge.h │ │ │ │ ├── RCTBridgeDelegate.h │ │ │ │ ├── RCTBridgeMethod.h │ │ │ │ ├── RCTBridgeModule.h │ │ │ │ ├── RCTBundleURLProvider.h │ │ │ │ ├── RCTClipboard.h │ │ │ │ ├── RCTComponent.h │ │ │ │ ├── RCTComponentData.h │ │ │ │ ├── RCTConvert+CoreLocation.h │ │ │ │ ├── RCTConvert+Transform.h │ │ │ │ ├── RCTConvert.h │ │ │ │ ├── RCTCxxConvert.h │ │ │ │ ├── RCTDatePicker.h │ │ │ │ ├── RCTDatePickerManager.h │ │ │ │ ├── RCTDefines.h │ │ │ │ ├── RCTDevSettings.h │ │ │ │ ├── RCTDeviceInfo.h │ │ │ │ ├── RCTDisplayLink.h │ │ │ │ ├── RCTErrorCustomizer.h │ │ │ │ ├── RCTErrorInfo.h │ │ │ │ ├── RCTEventDispatcher.h │ │ │ │ ├── RCTEventEmitter.h │ │ │ │ ├── RCTExceptionsManager.h │ │ │ │ ├── RCTFPSGraph.h │ │ │ │ ├── RCTFont.h │ │ │ │ ├── RCTFrameUpdate.h │ │ │ │ ├── RCTI18nManager.h │ │ │ │ ├── RCTI18nUtil.h │ │ │ │ ├── RCTImageSource.h │ │ │ │ ├── RCTInvalidating.h │ │ │ │ ├── RCTJSStackFrame.h │ │ │ │ ├── RCTJavaScriptExecutor.h │ │ │ │ ├── RCTJavaScriptLoader.h │ │ │ │ ├── RCTKeyCommands.h │ │ │ │ ├── RCTKeyboardObserver.h │ │ │ │ ├── RCTLayout.h │ │ │ │ ├── RCTLayoutAnimation.h │ │ │ │ ├── RCTLayoutAnimationGroup.h │ │ │ │ ├── RCTLog.h │ │ │ │ ├── RCTMacros.h │ │ │ │ ├── RCTManagedPointer.h │ │ │ │ ├── RCTMaskedView.h │ │ │ │ ├── RCTMaskedViewManager.h │ │ │ │ ├── RCTModalHostView.h │ │ │ │ ├── RCTModalHostViewController.h │ │ │ │ ├── RCTModalHostViewManager.h │ │ │ │ ├── RCTModalManager.h │ │ │ │ ├── RCTModuleData.h │ │ │ │ ├── RCTModuleMethod.h │ │ │ │ ├── RCTMultipartDataTask.h │ │ │ │ ├── RCTMultipartStreamReader.h │ │ │ │ ├── RCTNullability.h │ │ │ │ ├── RCTParserUtils.h │ │ │ │ ├── RCTPerformanceLogger.h │ │ │ │ ├── RCTPicker.h │ │ │ │ ├── RCTPickerManager.h │ │ │ │ ├── RCTPlatform.h │ │ │ │ ├── RCTPointerEvents.h │ │ │ │ ├── RCTProfile.h │ │ │ │ ├── RCTProgressViewManager.h │ │ │ │ ├── RCTRedBox.h │ │ │ │ ├── RCTRedBoxExtraDataViewController.h │ │ │ │ ├── RCTRefreshControl.h │ │ │ │ ├── RCTRefreshControlManager.h │ │ │ │ ├── RCTReloadCommand.h │ │ │ │ ├── RCTRootContentView.h │ │ │ │ ├── RCTRootShadowView.h │ │ │ │ ├── RCTRootView.h │ │ │ │ ├── RCTRootViewDelegate.h │ │ │ │ ├── RCTRootViewInternal.h │ │ │ │ ├── RCTSafeAreaShadowView.h │ │ │ │ ├── RCTSafeAreaView.h │ │ │ │ ├── RCTSafeAreaViewLocalData.h │ │ │ │ ├── RCTSafeAreaViewManager.h │ │ │ │ ├── RCTScrollContentShadowView.h │ │ │ │ ├── RCTScrollContentView.h │ │ │ │ ├── RCTScrollContentViewManager.h │ │ │ │ ├── RCTScrollView.h │ │ │ │ ├── RCTScrollViewManager.h │ │ │ │ ├── RCTScrollableProtocol.h │ │ │ │ ├── RCTSegmentedControl.h │ │ │ │ ├── RCTSegmentedControlManager.h │ │ │ │ ├── RCTShadowView+Internal.h │ │ │ │ ├── RCTShadowView+Layout.h │ │ │ │ ├── RCTShadowView.h │ │ │ │ ├── RCTSlider.h │ │ │ │ ├── RCTSliderManager.h │ │ │ │ ├── RCTSourceCode.h │ │ │ │ ├── RCTStatusBarManager.h │ │ │ │ ├── RCTSurface.h │ │ │ │ ├── RCTSurfaceDelegate.h │ │ │ │ ├── RCTSurfaceHostingProxyRootView.h │ │ │ │ ├── RCTSurfaceHostingView.h │ │ │ │ ├── RCTSurfaceRootShadowView.h │ │ │ │ ├── RCTSurfaceRootShadowViewDelegate.h │ │ │ │ ├── RCTSurfaceRootView.h │ │ │ │ ├── RCTSurfaceSizeMeasureMode.h │ │ │ │ ├── RCTSurfaceStage.h │ │ │ │ ├── RCTSurfaceView+Internal.h │ │ │ │ ├── RCTSurfaceView.h │ │ │ │ ├── RCTSwitch.h │ │ │ │ ├── RCTSwitchManager.h │ │ │ │ ├── RCTTextDecorationLineType.h │ │ │ │ ├── RCTTiming.h │ │ │ │ ├── RCTTouchEvent.h │ │ │ │ ├── RCTTouchHandler.h │ │ │ │ ├── RCTUIManager.h │ │ │ │ ├── RCTUIManagerObserverCoordinator.h │ │ │ │ ├── RCTUIManagerUtils.h │ │ │ │ ├── RCTUIUtils.h │ │ │ │ ├── RCTURLRequestDelegate.h │ │ │ │ ├── RCTURLRequestHandler.h │ │ │ │ ├── RCTUtils.h │ │ │ │ ├── RCTVersion.h │ │ │ │ ├── RCTView.h │ │ │ │ ├── RCTViewManager.h │ │ │ │ ├── RCTWKWebView.h │ │ │ │ ├── RCTWKWebViewManager.h │ │ │ │ ├── RCTWebView.h │ │ │ │ ├── RCTWebViewManager.h │ │ │ │ ├── RCTWrapperViewController.h │ │ │ │ ├── UIView+Private.h │ │ │ │ └── UIView+React.h │ │ ├── react-native-webrtc │ │ │ ├── RCTConvert+WebRTC.h │ │ │ ├── RTCMediaStreamTrack+React.h │ │ │ ├── RTCVideoViewManager.h │ │ │ ├── VideoCaptureController.h │ │ │ ├── WebRTCModule+RTCDataChannel.h │ │ │ ├── WebRTCModule+RTCPeerConnection.h │ │ │ ├── WebRTCModule+VideoTrackAdapter.h │ │ │ └── WebRTCModule.h │ │ └── yoga │ │ │ ├── Utils.h │ │ │ ├── YGConfig.h │ │ │ ├── YGEnums.h │ │ │ ├── YGFloatOptional.h │ │ │ ├── YGLayout.h │ │ │ ├── YGMacros.h │ │ │ ├── YGNode.h │ │ │ ├── YGNodePrint.h │ │ │ ├── YGStyle.h │ │ │ ├── Yoga-internal.h │ │ │ └── Yoga.h │ └── Public │ │ ├── React │ │ └── React │ │ │ ├── RCTAccessibilityManager.h │ │ │ ├── RCTActivityIndicatorView.h │ │ │ ├── RCTActivityIndicatorViewManager.h │ │ │ ├── RCTAlertManager.h │ │ │ ├── RCTAnimationType.h │ │ │ ├── RCTAppState.h │ │ │ ├── RCTAssert.h │ │ │ ├── RCTAsyncLocalStorage.h │ │ │ ├── RCTAutoInsetsProtocol.h │ │ │ ├── RCTBorderDrawing.h │ │ │ ├── RCTBorderStyle.h │ │ │ ├── RCTBridge+Private.h │ │ │ ├── RCTBridge.h │ │ │ ├── RCTBridgeDelegate.h │ │ │ ├── RCTBridgeMethod.h │ │ │ ├── RCTBridgeModule.h │ │ │ ├── RCTBundleURLProvider.h │ │ │ ├── RCTClipboard.h │ │ │ ├── RCTComponent.h │ │ │ ├── RCTComponentData.h │ │ │ ├── RCTConvert+CoreLocation.h │ │ │ ├── RCTConvert+Transform.h │ │ │ ├── RCTConvert.h │ │ │ ├── RCTCxxConvert.h │ │ │ ├── RCTDatePicker.h │ │ │ ├── RCTDatePickerManager.h │ │ │ ├── RCTDefines.h │ │ │ ├── RCTDevSettings.h │ │ │ ├── RCTDeviceInfo.h │ │ │ ├── RCTDisplayLink.h │ │ │ ├── RCTErrorCustomizer.h │ │ │ ├── RCTErrorInfo.h │ │ │ ├── RCTEventDispatcher.h │ │ │ ├── RCTEventEmitter.h │ │ │ ├── RCTExceptionsManager.h │ │ │ ├── RCTFPSGraph.h │ │ │ ├── RCTFont.h │ │ │ ├── RCTFrameUpdate.h │ │ │ ├── RCTI18nManager.h │ │ │ ├── RCTI18nUtil.h │ │ │ ├── RCTImageSource.h │ │ │ ├── RCTInvalidating.h │ │ │ ├── RCTJSStackFrame.h │ │ │ ├── RCTJavaScriptExecutor.h │ │ │ ├── RCTJavaScriptLoader.h │ │ │ ├── RCTKeyCommands.h │ │ │ ├── RCTKeyboardObserver.h │ │ │ ├── RCTLayout.h │ │ │ ├── RCTLayoutAnimation.h │ │ │ ├── RCTLayoutAnimationGroup.h │ │ │ ├── RCTLog.h │ │ │ ├── RCTMacros.h │ │ │ ├── RCTManagedPointer.h │ │ │ ├── RCTMaskedView.h │ │ │ ├── RCTMaskedViewManager.h │ │ │ ├── RCTModalHostView.h │ │ │ ├── RCTModalHostViewController.h │ │ │ ├── RCTModalHostViewManager.h │ │ │ ├── RCTModalManager.h │ │ │ ├── RCTModuleData.h │ │ │ ├── RCTModuleMethod.h │ │ │ ├── RCTMultipartDataTask.h │ │ │ ├── RCTMultipartStreamReader.h │ │ │ ├── RCTNullability.h │ │ │ ├── RCTParserUtils.h │ │ │ ├── RCTPerformanceLogger.h │ │ │ ├── RCTPicker.h │ │ │ ├── RCTPickerManager.h │ │ │ ├── RCTPlatform.h │ │ │ ├── RCTPointerEvents.h │ │ │ ├── RCTProfile.h │ │ │ ├── RCTProgressViewManager.h │ │ │ ├── RCTRedBox.h │ │ │ ├── RCTRedBoxExtraDataViewController.h │ │ │ ├── RCTRefreshControl.h │ │ │ ├── RCTRefreshControlManager.h │ │ │ ├── RCTReloadCommand.h │ │ │ ├── RCTRootContentView.h │ │ │ ├── RCTRootShadowView.h │ │ │ ├── RCTRootView.h │ │ │ ├── RCTRootViewDelegate.h │ │ │ ├── RCTRootViewInternal.h │ │ │ ├── RCTSafeAreaShadowView.h │ │ │ ├── RCTSafeAreaView.h │ │ │ ├── RCTSafeAreaViewLocalData.h │ │ │ ├── RCTSafeAreaViewManager.h │ │ │ ├── RCTScrollContentShadowView.h │ │ │ ├── RCTScrollContentView.h │ │ │ ├── RCTScrollContentViewManager.h │ │ │ ├── RCTScrollView.h │ │ │ ├── RCTScrollViewManager.h │ │ │ ├── RCTScrollableProtocol.h │ │ │ ├── RCTSegmentedControl.h │ │ │ ├── RCTSegmentedControlManager.h │ │ │ ├── RCTShadowView+Internal.h │ │ │ ├── RCTShadowView+Layout.h │ │ │ ├── RCTShadowView.h │ │ │ ├── RCTSlider.h │ │ │ ├── RCTSliderManager.h │ │ │ ├── RCTSourceCode.h │ │ │ ├── RCTStatusBarManager.h │ │ │ ├── RCTSurface.h │ │ │ ├── RCTSurfaceDelegate.h │ │ │ ├── RCTSurfaceHostingProxyRootView.h │ │ │ ├── RCTSurfaceHostingView.h │ │ │ ├── RCTSurfaceRootShadowView.h │ │ │ ├── RCTSurfaceRootShadowViewDelegate.h │ │ │ ├── RCTSurfaceRootView.h │ │ │ ├── RCTSurfaceSizeMeasureMode.h │ │ │ ├── RCTSurfaceStage.h │ │ │ ├── RCTSurfaceView+Internal.h │ │ │ ├── RCTSurfaceView.h │ │ │ ├── RCTSwitch.h │ │ │ ├── RCTSwitchManager.h │ │ │ ├── RCTTextDecorationLineType.h │ │ │ ├── RCTTiming.h │ │ │ ├── RCTTouchEvent.h │ │ │ ├── RCTTouchHandler.h │ │ │ ├── RCTUIManager.h │ │ │ ├── RCTUIManagerObserverCoordinator.h │ │ │ ├── RCTUIManagerUtils.h │ │ │ ├── RCTUIUtils.h │ │ │ ├── RCTURLRequestDelegate.h │ │ │ ├── RCTURLRequestHandler.h │ │ │ ├── RCTUtils.h │ │ │ ├── RCTVersion.h │ │ │ ├── RCTView.h │ │ │ ├── RCTViewManager.h │ │ │ ├── RCTWKWebView.h │ │ │ ├── RCTWKWebViewManager.h │ │ │ ├── RCTWebView.h │ │ │ ├── RCTWebViewManager.h │ │ │ ├── RCTWrapperViewController.h │ │ │ ├── UIView+Private.h │ │ │ └── UIView+React.h │ │ ├── react-native-webrtc │ │ ├── RCTConvert+WebRTC.h │ │ ├── RTCMediaStreamTrack+React.h │ │ ├── RTCVideoViewManager.h │ │ ├── VideoCaptureController.h │ │ ├── WebRTC │ │ │ ├── RTCAudioSession.h │ │ │ ├── RTCAudioSessionConfiguration.h │ │ │ ├── RTCAudioSource.h │ │ │ ├── RTCAudioTrack.h │ │ │ ├── RTCCallbackLogger.h │ │ │ ├── RTCCameraPreviewView.h │ │ │ ├── RTCCameraVideoCapturer.h │ │ │ ├── RTCConfiguration.h │ │ │ ├── RTCDataChannel.h │ │ │ ├── RTCDataChannelConfiguration.h │ │ │ ├── RTCDispatcher.h │ │ │ ├── RTCDtmfSender.h │ │ │ ├── RTCEAGLVideoView.h │ │ │ ├── RTCFieldTrials.h │ │ │ ├── RTCFileLogger.h │ │ │ ├── RTCFileVideoCapturer.h │ │ │ ├── RTCIceCandidate.h │ │ │ ├── RTCIceServer.h │ │ │ ├── RTCIntervalRange.h │ │ │ ├── RTCLegacyStatsReport.h │ │ │ ├── RTCLogging.h │ │ │ ├── RTCMTLVideoView.h │ │ │ ├── RTCMacros.h │ │ │ ├── RTCMediaConstraints.h │ │ │ ├── RTCMediaSource.h │ │ │ ├── RTCMediaStream.h │ │ │ ├── RTCMediaStreamTrack.h │ │ │ ├── RTCMetrics.h │ │ │ ├── RTCMetricsSampleInfo.h │ │ │ ├── RTCPeerConnection.h │ │ │ ├── RTCPeerConnectionFactory.h │ │ │ ├── RTCPeerConnectionFactoryOptions.h │ │ │ ├── RTCRtcpParameters.h │ │ │ ├── RTCRtpCodecParameters.h │ │ │ ├── RTCRtpEncodingParameters.h │ │ │ ├── RTCRtpHeaderExtension.h │ │ │ ├── RTCRtpParameters.h │ │ │ ├── RTCRtpReceiver.h │ │ │ ├── RTCRtpSender.h │ │ │ ├── RTCRtpTransceiver.h │ │ │ ├── RTCSSLAdapter.h │ │ │ ├── RTCSessionDescription.h │ │ │ ├── RTCTracing.h │ │ │ ├── RTCVideoCapturer.h │ │ │ ├── RTCVideoCodec.h │ │ │ ├── RTCVideoCodecFactory.h │ │ │ ├── RTCVideoCodecH264.h │ │ │ ├── RTCVideoDecoderVP8.h │ │ │ ├── RTCVideoDecoderVP9.h │ │ │ ├── RTCVideoEncoderVP8.h │ │ │ ├── RTCVideoEncoderVP9.h │ │ │ ├── RTCVideoFrame.h │ │ │ ├── RTCVideoFrameBuffer.h │ │ │ ├── RTCVideoRenderer.h │ │ │ ├── RTCVideoSource.h │ │ │ ├── RTCVideoTrack.h │ │ │ ├── RTCVideoViewShading.h │ │ │ ├── UIDevice+RTCDevice.h │ │ │ └── WebRTC.h │ │ ├── WebRTCModule+RTCDataChannel.h │ │ ├── WebRTCModule+RTCPeerConnection.h │ │ ├── WebRTCModule+VideoTrackAdapter.h │ │ └── WebRTCModule.h │ │ └── yoga │ │ ├── YGEnums.h │ │ ├── YGMacros.h │ │ └── Yoga.h │ ├── Local Podspecs │ ├── React.podspec.json │ ├── react-native-webrtc.podspec.json │ └── yoga.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── React │ ├── React-dummy.m │ ├── React-prefix.pch │ └── React.xcconfig │ ├── react-native-webrtc │ ├── react-native-webrtc-dummy.m │ ├── react-native-webrtc-prefix.pch │ └── react-native-webrtc.xcconfig │ └── yoga │ ├── yoga-dummy.m │ ├── yoga-prefix.pch │ └── yoga.xcconfig ├── main-app.js ├── middleware.js ├── package.json ├── reducers.js ├── src ├── auth │ ├── components │ │ └── LogoutMenu │ │ │ ├── LogoutMenu.js │ │ │ └── LogoutMenuContainer.js │ ├── navigators │ │ └── auth.js │ ├── screens │ │ ├── AuthLoadingScreen │ │ │ ├── AuthLoadingScreen.js │ │ │ └── AuthLoadingScreenContainer.js │ │ ├── LoginScreen │ │ │ ├── LoginScreen.js │ │ │ └── LoginScreenContainer.js │ │ └── LoginWebView │ │ │ ├── LoginWebView.js │ │ │ └── LoginWebViewContainer.js │ └── utils │ │ ├── queryString.js │ │ └── token-mobile-handler.js ├── calls │ ├── components │ │ ├── CallForwarding │ │ │ ├── CallForwardingBanner.js │ │ │ ├── CallForwardingBanner.test.js │ │ │ └── CallForwardingBannerContainer.js │ │ ├── DialpadForm │ │ │ ├── Dialpad │ │ │ │ ├── Dialpad.js │ │ │ │ └── DialpadStyles.js │ │ │ ├── DialpadForm.js │ │ │ └── DialpadFormStyles.js │ │ ├── DisconnectForm │ │ │ └── DisconnectForm.js │ │ ├── HangupButton │ │ │ └── HangupButton.js │ │ ├── MakeCallButton │ │ │ └── MakeCallButton.js │ │ ├── OnCallInfo │ │ │ ├── OnCallInfo.js │ │ │ ├── OnCallInfoContainer.js │ │ │ ├── OnCallInfoStyles.js │ │ │ └── onCallDialpad.js │ │ ├── RecentCallsMenu │ │ │ ├── RecentCallsMenu.js │ │ │ └── RecentCallsMenuContainer.js │ │ ├── RegisterForm │ │ │ ├── RegisterForm.js │ │ │ └── RegisterFormContainer.js │ │ └── Timer │ │ │ └── Timer.js │ ├── hooks │ │ └── use-call-status.js │ ├── navigators │ │ ├── call.js │ │ ├── contacts.js │ │ ├── index.js │ │ ├── navigation-service.js │ │ ├── recent.js │ │ └── register.js │ ├── providers │ │ └── PhoneProvider │ │ │ ├── PhoneProvider.js │ │ │ ├── PhoneProviderContainer.js │ │ │ ├── PhoneService.js │ │ │ └── tone-event-handler.js │ ├── screens │ │ ├── CallModalScreen │ │ │ ├── CallModalScreen.js │ │ │ └── CallModalScreenContainer.js │ │ ├── ContactDetailsScreen │ │ │ ├── ContactDetailsScreen.js │ │ │ ├── ContactDetailsScreenContainer.js │ │ │ └── ContactDetailsScreenStyles.js │ │ ├── ContactsScreen │ │ │ ├── ContactsScreen.js │ │ │ └── ContactsScreenContainer.js │ │ ├── DialpadScreen │ │ │ ├── DialpadScreen.js │ │ │ └── DialpadScreenContainer.js │ │ ├── RecentCallDetails │ │ │ ├── RecentCallDetails.js │ │ │ ├── RecentCallDetailsContainer.js │ │ │ └── RecentCallDetailsStyles.js │ │ ├── RecentCallsScreen │ │ │ ├── RecentCallsScreen.js │ │ │ └── RecentCallsScreenContainer.js │ │ ├── RegisterLoadingScreen │ │ │ ├── RegisterLoadingScreen.js │ │ │ └── RegisterLoadingScreenContainer.js │ │ ├── RegisterScreen │ │ │ ├── RegisterScreen.js │ │ │ └── RegisterScreenContainer.js │ │ └── SearchUsersScreen │ │ │ ├── SearchUsersScreen.js │ │ │ ├── SearchUsersScreenContainer.js │ │ │ ├── SearchUsersScreenForwarding.js │ │ │ └── SearchUsersScreenForwardingContainer.js │ └── utils │ │ └── sound │ │ └── Sound.js ├── common │ ├── components │ │ └── android.js │ └── utils │ │ ├── formatters.js │ │ └── logging.js ├── config.sample.js ├── push_notifications │ ├── actions │ │ └── push_notifications.js │ └── reducers │ │ └── push_notifications.js ├── services │ └── api.js ├── settings │ ├── actions │ │ └── app-state.js │ ├── components │ │ ├── ForwardListMenu │ │ │ ├── ForwardListMenu.js │ │ │ └── ForwardListMenuContainer.js │ │ ├── RingingListMenu │ │ │ ├── RingingListMenu.js │ │ │ └── RingingListMenuContainer.js │ │ ├── logout │ │ │ ├── LogoutListComponent.js │ │ │ └── LogoutListComponentContainer.js │ │ └── profile │ │ │ ├── Profile.js │ │ │ └── ProfileContainer.js │ ├── navigators │ │ └── settings.js │ ├── reducers │ │ └── app-state.js │ └── screens │ │ ├── AutoRegister │ │ ├── AutoRegister.js │ │ └── AutoRegisterContainer.js │ │ ├── CallForwardingScreen │ │ ├── CallForwardingScreen.js │ │ ├── CallForwardingScreenContainer.js │ │ ├── DestinationsListForward.js │ │ ├── DestinationsListForwardContainer.js │ │ ├── DestinationsListRinging.js │ │ └── DestinationsListRingingContainer.js │ │ ├── ProfileScreen │ │ └── ProfileScreen.js │ │ ├── SendStats │ │ ├── SendStats.js │ │ └── SendStatsContainer.js │ │ └── SettingsScreen │ │ └── SettingsScreen.js └── styles │ └── ColorPalette.js ├── store.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- 1 | API_ENDPOINTS= 2 | API_ENDPOINT3= 3 | OAUTH_CLIENT_ID= 4 | OAUTH_REDIRECT_URL= 5 | OAUTH_AUTHORIZE_URL=https://oauth.web.cern.ch/OAuth/Authorize -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | parser: babel-eslint 2 | extends: 3 | - airbnb 4 | - prettier 5 | - plugin:prettier/recommended 6 | - prettier/babel 7 | - prettier/react 8 | - '@react-native-community' 9 | plugins: 10 | - prettier 11 | - react 12 | - jsx-a11y 13 | - import 14 | rules: 15 | prettier/prettier: error 16 | react/jsx-filename-extension: off 17 | react/prop-types: 18 | - error 19 | - ignore: [navigation] 20 | no-console: error 21 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | # Handle line endings automatically for files detected as text 3 | # and leave all files detected as binary untouched. 4 | # Force the following filetypes to have unix eols, so Windows does not break them 5 | * text=auto eol=lf 6 | *.{cmd,[cC][mM][dD]} text eol=crlf 7 | *.{bat,[bB][aA][tT]} text eol=crlf 8 | 9 | # 10 | ## These files are binary and should be left untouched 11 | # 12 | 13 | # (binary is a macro for -text -diff) 14 | *.png binary 15 | *.jpg binary 16 | *.jpeg binary 17 | *.gif binary 18 | *.ico binary 19 | *.mov binary 20 | *.mp4 binary 21 | *.mp3 binary 22 | *.flv binary 23 | *.fla binary 24 | *.swf binary 25 | *.gz binary 26 | *.zip binary 27 | *.7z binary 28 | *.ttf binary 29 | *.eot binary 30 | *.woff binary 31 | *.pyc binary 32 | *.pdf binary 33 | *.ez binary 34 | *.bz2 binary 35 | *.swp binary -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "modules/tone-api"] 2 | path = modules/tone-api 3 | url = https://github.com/cern-phone-apps/tone-api.git 4 | [submodule "modules/core"] 5 | path = modules/core 6 | url = https://github.com/cern-phone-apps/core.git 7 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- 1 | trailingComma: none 2 | tabWidth: 2 3 | semi: true 4 | singleQuote: true 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 11.13 4 | 5 | cache: 6 | yarn: true 7 | 8 | install: 9 | # use the new "ci" command for fastest installs on CI 10 | - npm install -g codecov 11 | - yarn 12 | 13 | stages: 14 | - unit_test 15 | 16 | jobs: 17 | include: 18 | - stage: unit_test 19 | name: "Unit Tests" 20 | script: 21 | - yarn --version 22 | - yarn test-coverage 23 | - codecov -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "Debug Android", 9 | "cwd": "${workspaceFolder}", 10 | "type": "reactnative", 11 | "request": "launch", 12 | "platform": "android" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "workbench.colorCustomizations": { 3 | "activityBar.background": "#0397ef", 4 | "activityBar.activeBorder": "#fec0e7", 5 | "activityBar.foreground": "#e7e7e7", 6 | "activityBar.inactiveForeground": "#e7e7e799", 7 | "activityBarBadge.background": "#fec0e7", 8 | "activityBarBadge.foreground": "#15202b", 9 | "titleBar.activeBackground": "#0277bd", 10 | "titleBar.inactiveBackground": "#0277bd99", 11 | "titleBar.activeForeground": "#e7e7e7", 12 | "titleBar.inactiveForeground": "#e7e7e799", 13 | "statusBar.background": "#0277bd", 14 | "statusBarItem.hoverBackground": "#0397ef", 15 | "statusBar.foreground": "#e7e7e7" 16 | }, 17 | "peacock.color": "#0277BD" 18 | } -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. 3 | This project adheres to [Dial Mobile](https://github.com/cern-dialtone/DialMobile). 4 | 5 | ## [version] - [unreleased date] 6 | ### Added 7 | - XXX 8 | ### Fixed 9 | - XXX 10 | ### Improved 11 | - XXX 12 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Rene Fernandez Sanchez 2 | Arian Firoozbakht 3 | Marco Vidal 4 | Michal Kolodziejski 5 | Pablo Roncero Fernandez 6 | Pedro Ferreira 7 | Lorys Lopez 8 | -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CERNPhoneApp 4 | Project android created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.buildship.core.gradleprojectbuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.buildship.core.gradleprojectnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | app 4 | Project app created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.buildship.core.gradleprojectbuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.eclipse.buildship.core.gradleprojectnature 22 | 23 | 24 | -------------------------------------------------------------------------------- /android/app/bin/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | app 4 | Project app created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.buildship.core.gradleprojectbuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.eclipse.buildship.core.gradleprojectnature 22 | 23 | 24 | -------------------------------------------------------------------------------- /android/app/bin/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/bin/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: -------------------------------------------------------------------------------- /android/app/bin/src/debug/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/bin/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/bin/src/main/java/ch/cern/dialmobile/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/java/ch/cern/dialmobile/MainActivity.class -------------------------------------------------------------------------------- /android/app/bin/src/main/java/ch/cern/dialmobile/MainApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/java/ch/cern/dialmobile/MainApplication.class -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/raw/ringbacktone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/raw/ringbacktone.wav -------------------------------------------------------------------------------- /android/app/bin/src/main/res/raw/ringbacktone_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/raw/ringbacktone_1.wav -------------------------------------------------------------------------------- /android/app/bin/src/main/res/raw/ringtone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/bin/src/main/res/raw/ringtone.wav -------------------------------------------------------------------------------- /android/app/bin/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /android/app/bin/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2F81E6 4 | -------------------------------------------------------------------------------- /android/app/bin/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CERN Phone App 3 | 4 | -------------------------------------------------------------------------------- /android/app/bin/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/bin/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: -------------------------------------------------------------------------------- /android/app/src/debug/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/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/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/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/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/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/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/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/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2F81E6 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CERN Phone App 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useAndroidX=true 21 | android.enableJetifier=true 22 | 23 | MYAPP_UPLOAD_STORE_FILE=my-upload-key.keystore 24 | MYAPP_UPLOAD_KEY_ALIAS=my-key-alias 25 | MYAPP_UPLOAD_STORE_PASSWORD=123456 26 | MYAPP_UPLOAD_KEY_PASSWORD=123456 -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.5-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'CERNPhoneApp' 2 | include ':react-native-sound' 3 | project(':react-native-sound').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sound/android') 4 | include ':react-native-webview' 5 | project(':react-native-webview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview/android') 6 | include ':react-native-vector-icons' 7 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 8 | 9 | include ':WebRTCModule', ':react-native-gesture-handler', ':app' 10 | project(':WebRTCModule').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webrtc/android') 11 | project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android') 12 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 13 | include ':app' 14 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CERNPhoneApp", 3 | "displayName": "CERN Phone App" 4 | } -------------------------------------------------------------------------------- /assets/assets_CERN-logo_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/assets/assets_CERN-logo_outline.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ["module:metro-react-native-babel-preset"] 3 | } 4 | -------------------------------------------------------------------------------- /configure-tone-api.js: -------------------------------------------------------------------------------- 1 | import { DialSingleton } from 'tone-api-mobile'; 2 | import eventHandler from './src/calls/providers/PhoneProvider/tone-event-handler'; 3 | import { logMessage } from './src/common/utils/logging'; 4 | 5 | /** 6 | * Initializes the Tone JS API to make and receive calls 7 | */ 8 | const configureToneApi = () => { 9 | logMessage('configureToneApi'); 10 | const isDev = false; 11 | const toneAPI = DialSingleton.getInstance(isDev); 12 | if (toneAPI.getNotifier()) { 13 | toneAPI.getNotifier().on('ToneEvent', event => { 14 | eventHandler(event, toneAPI); 15 | }); 16 | } 17 | return toneAPI; 18 | }; 19 | /** 20 | * Export the toneAPI already initialized 21 | */ 22 | const toneAPI = configureToneApi(); 23 | 24 | export { toneAPI }; 25 | -------------------------------------------------------------------------------- /docs/all-screenshots.md: -------------------------------------------------------------------------------- 1 | # App screenshots 2 | 3 | -------------------------------------------------------------------------------- /docs/screenshots/call-forwarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/call-forwarding.png -------------------------------------------------------------------------------- /docs/screenshots/contacts-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/contacts-list.png -------------------------------------------------------------------------------- /docs/screenshots/dial-pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/dial-pad.png -------------------------------------------------------------------------------- /docs/screenshots/login-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/login-screen.png -------------------------------------------------------------------------------- /docs/screenshots/number-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/number-selector.png -------------------------------------------------------------------------------- /docs/screenshots/on-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/on-call.png -------------------------------------------------------------------------------- /docs/screenshots/profile-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/profile-details.png -------------------------------------------------------------------------------- /docs/screenshots/recent-calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/recent-calls.png -------------------------------------------------------------------------------- /docs/screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cern-phone-apps/mobile-phone-app/f2ba72796ac67000dc5d7e2c65a8ed527130378c/docs/screenshots/settings.png -------------------------------------------------------------------------------- /firebase-notifications.js: -------------------------------------------------------------------------------- 1 | import firebase from 'react-native-firebase'; 2 | import { logMessage } from './src/common/utils/logging'; 3 | 4 | class FirebaseNotifications { 5 | static async requestPermission() { 6 | try { 7 | await firebase.messaging().requestPermission(); 8 | } catch (error) { 9 | // User has rejected permissions 10 | logMessage('permission rejected'); 11 | } 12 | } 13 | 14 | // 1 15 | static async checkPermission() { 16 | const enabled = await firebase.messaging().hasPermission(); 17 | if (!enabled) { 18 | FirebaseNotifications.requestPermission(); 19 | } 20 | return enabled; 21 | } 22 | } 23 | 24 | export default FirebaseNotifications; 25 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | * @lint-ignore-every XPLATJSCOPYRIGHT1 4 | */ 5 | import 'webrtc-adapter'; 6 | import { AppRegistry } from 'react-native'; 7 | import { registerGlobals } from 'react-native-webrtc'; 8 | import bgMessaging from './bgMessaging'; 9 | 10 | import { name as appName } from './app.json'; 11 | 12 | import PhoneMobile from './main-app'; 13 | /** 14 | * We initialize the webrtc capabilities here in order to import them directly on React Native. 15 | * These are used in the Tone JS API Session Description Handler 16 | */ 17 | // Polyfill WebRTC 18 | registerGlobals(); 19 | /** 20 | * We are not displaying warnings in the app itself 21 | */ 22 | // eslint-disable-next-line no-console 23 | console.disableYellowBox = true; 24 | 25 | // Foreground behavior 26 | AppRegistry.registerComponent(appName, () => PhoneMobile); 27 | 28 | // Background behavior 29 | AppRegistry.registerHeadlessTask( 30 | 'RNFirebaseBackgroundMessage', 31 | () => bgMessaging 32 | ); 33 | 34 | AppRegistry.registerHeadlessTask( 35 | 'RNCallKeepBackgroundMessage', 36 | () => ({ name, callUUID, handle }) => { 37 | // Make your call here 38 | 39 | return Promise.resolve(); 40 | } 41 | ); 42 | -------------------------------------------------------------------------------- /ios/CERNPhoneApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/CERNPhoneApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/CERNPhoneApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/CERNPhoneApp/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios/CERNPhoneApp/CERNPhoneApp.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/CERNPhoneApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/CERNPhoneApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/CERNPhoneApp/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/CERNPhoneAppTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAlertManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAnimationType.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTAnimationType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAppState.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAppState.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAssert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTAssert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBorderStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridge+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridge.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridge.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridgeModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTClipboard.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTClipboard.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTComponent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTComponentData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTComponentData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTConvert+Transform.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTCxxConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTCxxConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTDatePicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTDefines.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDevSettings.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTDevSettings.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTDeviceInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDisplayLink.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTErrorInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTEventEmitter.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTFPSGraph.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTFont.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTFont.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTI18nManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTI18nUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTImageSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTImageSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTInvalidating.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTInvalidating.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTKeyCommands.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTLayout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTLog.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTLog.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTManagedPointer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTManagedPointer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMaskedView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTMaskedView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTMaskedViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModalHostView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModalManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModuleData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTModuleData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModuleMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTMultipartDataTask.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTNullability.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTNullability.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTParserUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTParserUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPlatform.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTPlatform.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPointerEvents.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTProfile.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTProfile.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRedBox.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTRedBox.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRefreshControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTReloadCommand.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTReloadCommand.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootContentView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView+Internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView+Layout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSlider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSliderManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSliderManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSourceCode.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurface.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurface.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSwitch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSwitchManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTTiming.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTTiming.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTTouchEvent.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTTouchHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUIManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManagerUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUIUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/UIUtils/RCTUIUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTVersion.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTVersion.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWKWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWKWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWKWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/UIView+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/UIView+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/UIView+React.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/UIView+React.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/react-native-webrtc/RCTConvert+WebRTC.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/RCTConvert+WebRTC.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/react-native-webrtc/RTCMediaStreamTrack+React.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/RTCMediaStreamTrack+React.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/react-native-webrtc/RTCVideoViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/RTCVideoViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/react-native-webrtc/VideoCaptureController.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/VideoCaptureController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/react-native-webrtc/WebRTCModule+RTCDataChannel.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/WebRTCModule+RTCDataChannel.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/react-native-webrtc/WebRTCModule+RTCPeerConnection.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/WebRTCModule+RTCPeerConnection.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/react-native-webrtc/WebRTCModule+VideoTrackAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/WebRTCModule+VideoTrackAdapter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/react-native-webrtc/WebRTCModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/WebRTCModule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/Utils.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Utils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGConfig.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGConfig.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGEnums.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGFloatOptional.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGFloatOptional.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGNode.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGNodePrint.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/Yoga-internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/Yoga.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAlertManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAnimationType.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTAnimationType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAppState.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAppState.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAssert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTAssert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBorderStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridge+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridge.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridge.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridgeModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTClipboard.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTClipboard.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTComponent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTComponentData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTComponentData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTConvert+Transform.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTCxxConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTCxxConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTDatePicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTDefines.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDevSettings.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTDevSettings.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTDeviceInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDisplayLink.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTErrorInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTEventEmitter.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTFPSGraph.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTFont.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTFont.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTI18nManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTI18nUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTImageSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTImageSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTInvalidating.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTInvalidating.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTKeyCommands.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTLayout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTLog.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTLog.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTManagedPointer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTManagedPointer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMaskedView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTMaskedView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTMaskedViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModalHostView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModalManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModuleData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTModuleData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModuleMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTMultipartDataTask.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTNullability.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTNullability.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTParserUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTParserUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPlatform.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTPlatform.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPointerEvents.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTProfile.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTProfile.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRedBox.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTRedBox.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRefreshControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTReloadCommand.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTReloadCommand.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootContentView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView+Internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView+Layout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSlider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSliderManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSliderManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSourceCode.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurface.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurface.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSwitch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSwitchManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTTiming.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTTiming.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTTouchEvent.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTTouchHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUIManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManagerUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUIUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/UIUtils/RCTUIUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTVersion.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTVersion.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWKWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWKWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWKWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/UIView+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/UIView+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/UIView+React.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/UIView+React.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/RCTConvert+WebRTC.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/RCTConvert+WebRTC.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/RTCMediaStreamTrack+React.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/RTCMediaStreamTrack+React.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/RTCVideoViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/RTCVideoViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/VideoCaptureController.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/VideoCaptureController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCAudioSession.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCAudioSession.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCAudioSessionConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCAudioSessionConfiguration.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCAudioSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCAudioSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCAudioTrack.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCAudioTrack.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCCallbackLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCCallbackLogger.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCCameraPreviewView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCCameraPreviewView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCCameraVideoCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCCameraVideoCapturer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCConfiguration.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCDataChannel.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCDataChannel.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCDataChannelConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCDataChannelConfiguration.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCDispatcher.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCDispatcher.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCDtmfSender.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCDtmfSender.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCEAGLVideoView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCEAGLVideoView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCFieldTrials.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCFieldTrials.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCFileLogger.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCFileVideoCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCFileVideoCapturer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCIceCandidate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCIceCandidate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCIceServer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCIceServer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCIntervalRange.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCIntervalRange.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCLegacyStatsReport.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCLegacyStatsReport.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCLogging.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCLogging.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCMTLVideoView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCMTLVideoView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCMediaConstraints.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCMediaConstraints.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCMediaSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCMediaSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCMediaStream.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCMediaStream.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCMediaStreamTrack.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCMediaStreamTrack.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCMetrics.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCMetrics.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCMetricsSampleInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCMetricsSampleInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCPeerConnection.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCPeerConnection.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCPeerConnectionFactory.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCPeerConnectionFactory.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCPeerConnectionFactoryOptions.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCRtcpParameters.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCRtcpParameters.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCRtpCodecParameters.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCRtpCodecParameters.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCRtpEncodingParameters.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCRtpEncodingParameters.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCRtpHeaderExtension.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCRtpHeaderExtension.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCRtpParameters.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCRtpParameters.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCRtpReceiver.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCRtpReceiver.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCRtpSender.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCRtpSender.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCRtpTransceiver.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCRtpTransceiver.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCSSLAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCSSLAdapter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCSessionDescription.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCSessionDescription.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCTracing.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCTracing.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoCapturer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoCodec.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoCodec.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoCodecFactory.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoCodecFactory.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoCodecH264.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoCodecH264.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoDecoderVP8.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoDecoderVP8.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoDecoderVP9.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoDecoderVP9.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoEncoderVP8.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoEncoderVP8.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoEncoderVP9.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoEncoderVP9.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoFrame.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoFrameBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoFrameBuffer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoRenderer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoRenderer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoTrack.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoTrack.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/RTCVideoViewShading.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/RTCVideoViewShading.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/UIDevice+RTCDevice.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/UIDevice+RTCDevice.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTC/WebRTC.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native-webrtc/ios/WebRTC.framework/Headers/WebRTC.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTCModule+RTCDataChannel.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/WebRTCModule+RTCDataChannel.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTCModule+RTCPeerConnection.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/WebRTCModule+RTCPeerConnection.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTCModule+VideoTrackAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/WebRTCModule+VideoTrackAdapter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/react-native-webrtc/WebRTCModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-webrtc/ios/RCTWebRTC/WebRTCModule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/yoga/YGEnums.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/yoga/YGMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/yoga/Yoga.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/react-native-webrtc.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-webrtc", 3 | "version": "1.69.0", 4 | "summary": "WebRTC for React Native", 5 | "homepage": "https://github.com/oney/react-native-webrtc", 6 | "license": null, 7 | "authors": "https://github.com/oney/react-native-webrtc/graphs/contributors", 8 | "source": { 9 | "git": "git@github.com:oney/react-native-webrtc.git", 10 | "tag": "release #{s.version}" 11 | }, 12 | "requires_arc": true, 13 | "platforms": { 14 | "ios": "9.0" 15 | }, 16 | "preserve_paths": "ios/**/*", 17 | "source_files": "ios/**/*.{h,m}", 18 | "libraries": [ 19 | "c", 20 | "sqlite3", 21 | "stdc++" 22 | ], 23 | "frameworks": [ 24 | "AudioToolbox", 25 | "AVFoundation", 26 | "CoreAudio", 27 | "CoreGraphics", 28 | "CoreVideo", 29 | "GLKit", 30 | "VideoToolbox" 31 | ], 32 | "ios": { 33 | "vendored_frameworks": "ios/WebRTC.framework" 34 | }, 35 | "xcconfig": { 36 | "OTHER_LDFLAGS": "-framework WebRTC" 37 | }, 38 | "dependencies": { 39 | "React": [ 40 | 41 | ] 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/yoga.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "yoga", 3 | "version": "0.59.9.React", 4 | "license": { 5 | "type": "MIT" 6 | }, 7 | "homepage": "https://facebook.github.io/yoga/", 8 | "documentation_url": "https://facebook.github.io/yoga/docs/api/c/", 9 | "summary": "Yoga is a cross-platform layout engine which implements Flexbox.", 10 | "description": "Yoga is a cross-platform layout engine enabling maximum collaboration within your team by implementing an API many designers are familiar with, and opening it up to developers across different platforms.", 11 | "authors": "Facebook", 12 | "source": { 13 | "git": "https://github.com/facebook/react-native.git", 14 | "tag": "v0.59.9" 15 | }, 16 | "module_name": "yoga", 17 | "requires_arc": false, 18 | "compiler_flags": [ 19 | "-fno-omit-frame-pointer", 20 | "-fexceptions", 21 | "-Wall", 22 | "-Werror", 23 | "-std=c++1y", 24 | "-fPIC" 25 | ], 26 | "platforms": { 27 | "ios": "9.0", 28 | "tvos": "9.2" 29 | }, 30 | "source_files": "yoga/**/*.{cpp,h}", 31 | "public_header_files": "yoga/{Yoga,YGEnums,YGMacros,YGValue}.h" 32 | } 33 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_React : NSObject 3 | @end 4 | @implementation PodsDummy_React 5 | @end 6 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_CXX_LANGUAGE_STANDARD = c++14 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/React 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/React" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/yoga" "$(PODS_TARGET_SRCROOT)/ReactCommon" 5 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/yoga" 6 | OTHER_LDFLAGS = -l"stdc++" -framework "JavaScriptCore" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/react-native-webrtc/react-native-webrtc-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_react_native_webrtc : NSObject 3 | @end 4 | @implementation PodsDummy_react_native_webrtc 5 | @end 6 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/react-native-webrtc/react-native-webrtc-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/yoga/yoga-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_yoga : NSObject 3 | @end 4 | @implementation PodsDummy_yoga 5 | @end 6 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/yoga/yoga-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/yoga/yoga.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/yoga 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/yoga" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/yoga" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native/ReactCommon/yoga 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /reducers.js: -------------------------------------------------------------------------------- 1 | import { combineReducers } from 'redux'; 2 | import { 3 | authReducer, 4 | meReducer, 5 | callsReducer, 6 | callForwardingReducer, 7 | recentCallsReducer, 8 | doNotDisturbReducer, 9 | profileReducer, 10 | contactsReducer 11 | } from 'dial-core'; 12 | 13 | import settingsReducer from './src/settings/reducers/app-state'; 14 | import pushDevicesReducer from './src/push_notifications/reducers/push_notifications'; 15 | 16 | export default combineReducers({ 17 | auth: authReducer, 18 | user: meReducer, 19 | callForwarding: callForwardingReducer, 20 | call: callsReducer.callReducer, 21 | connection: callsReducer.connectionReducer, 22 | recent: recentCallsReducer, 23 | search: callsReducer.searchReducer, 24 | dialpad: callsReducer.dialpadReducer, 25 | numbers: callsReducer.numbersReducer, 26 | status: doNotDisturbReducer, 27 | profile: profileReducer, 28 | contacts: contactsReducer, 29 | settings: settingsReducer, 30 | pushDevices: pushDevicesReducer 31 | }); 32 | -------------------------------------------------------------------------------- /src/auth/components/LogoutMenu/LogoutMenuContainer.js: -------------------------------------------------------------------------------- 1 | import { connect } from 'react-redux'; 2 | import { bindActionCreators } from 'redux'; 3 | 4 | import { withNavigation } from 'react-navigation'; 5 | import LogoutMenu from './LogoutMenu'; 6 | 7 | import { phoneService } from '../../../calls/providers/PhoneProvider/PhoneService'; 8 | 9 | import dialBackendApi from '../../../services/api'; 10 | 11 | function mapStateToProps() { 12 | return {}; 13 | } 14 | 15 | function mapDispatchToProps(dispatch) { 16 | return bindActionCreators( 17 | { 18 | logout: dialBackendApi().logout 19 | }, 20 | dispatch 21 | ); 22 | } 23 | 24 | export default connect( 25 | mapStateToProps, 26 | mapDispatchToProps 27 | )(withNavigation(phoneService(LogoutMenu))); 28 | -------------------------------------------------------------------------------- /src/auth/navigators/auth.js: -------------------------------------------------------------------------------- 1 | import { createStackNavigator } from 'react-navigation-stack'; 2 | import LoginScreenContainer from '../screens/LoginScreen/LoginScreenContainer'; 3 | import LoginWebViewContainer from '../screens/LoginWebView/LoginWebViewContainer'; 4 | import ColorPalette from '../../styles/ColorPalette'; 5 | 6 | export default createStackNavigator({ 7 | SignIn: { 8 | screen: LoginScreenContainer, 9 | navigationOptions: () => ({ 10 | headerTitleStyle: { 11 | color: 'white', 12 | flex: 3 13 | }, 14 | title: `Sign in`, 15 | headerStyle: { 16 | backgroundColor: ColorPalette.primary 17 | }, 18 | headerTintColor: 'white' 19 | }) 20 | }, 21 | LoginWebView: { 22 | screen: LoginWebViewContainer, 23 | navigationOptions: () => ({ 24 | headerTitleStyle: { 25 | color: 'white', 26 | flex: 3 27 | }, 28 | title: `Input your credentials`, 29 | headerStyle: { 30 | backgroundColor: ColorPalette.primary 31 | }, 32 | headerTintColor: 'white' 33 | }) 34 | } 35 | }); 36 | -------------------------------------------------------------------------------- /src/auth/screens/AuthLoadingScreen/AuthLoadingScreenContainer.js: -------------------------------------------------------------------------------- 1 | import { connect } from 'react-redux'; 2 | 3 | import { bindActionCreators } from 'redux'; 4 | import { AuthLoadingScreen } from './AuthLoadingScreen'; 5 | 6 | import dialBackendApi from '../../../services/api'; 7 | 8 | function mapStateToProps(state) { 9 | const { auth } = state; 10 | return { 11 | loggedIn: auth.loggedIn, 12 | token: auth.token 13 | }; 14 | } 15 | 16 | function mapDispatchToProps(dispatch) { 17 | return bindActionCreators( 18 | { 19 | getMe: dialBackendApi().getMe 20 | }, 21 | dispatch 22 | ); 23 | } 24 | 25 | export default connect( 26 | mapStateToProps, 27 | mapDispatchToProps 28 | )(AuthLoadingScreen); 29 | -------------------------------------------------------------------------------- /src/auth/screens/LoginScreen/LoginScreenContainer.js: -------------------------------------------------------------------------------- 1 | import { connect } from 'react-redux'; 2 | import { bindActionCreators } from 'redux'; 3 | 4 | import { authActions } from 'dial-core'; 5 | import LoginScreen from './LoginScreen'; 6 | 7 | function mapStateToProps(state) { 8 | const { auth } = state; 9 | return { 10 | ...auth 11 | }; 12 | } 13 | 14 | function mapDispatchToProps(dispatch) { 15 | return bindActionCreators( 16 | { 17 | startAuth: authActions.startAuth 18 | }, 19 | dispatch 20 | ); 21 | } 22 | 23 | export default connect( 24 | mapStateToProps, 25 | mapDispatchToProps 26 | )(LoginScreen); 27 | -------------------------------------------------------------------------------- /src/auth/screens/LoginWebView/LoginWebViewContainer.js: -------------------------------------------------------------------------------- 1 | import { connect } from 'react-redux'; 2 | import { bindActionCreators } from 'redux'; 3 | 4 | import { authActions } from 'dial-core'; 5 | 6 | import LoginWebView from './LoginWebView'; 7 | import dialBackendApi from '../../../services/api'; 8 | 9 | function mapStateToProps({ auth }) { 10 | const { login, loginInProgress, loggedIn, error } = auth; 11 | return { 12 | login, 13 | loginInProgress, 14 | loggedIn, 15 | error 16 | }; 17 | } 18 | 19 | function mapDispatchToProps(dispatch) { 20 | return bindActionCreators( 21 | { 22 | getMe: dialBackendApi().getMe, 23 | login: dialBackendApi().login, 24 | setAuthenticated: authActions.setAuthenticatedMobile 25 | }, 26 | dispatch 27 | ); 28 | } 29 | 30 | export default connect( 31 | mapStateToProps, 32 | mapDispatchToProps 33 | )(LoginWebView); 34 | -------------------------------------------------------------------------------- /src/auth/utils/queryString.js: -------------------------------------------------------------------------------- 1 | export default class QueryStringUtils { 2 | static getParameterByName(name, url) { 3 | if (!url) url = window.location.href; 4 | name = name.replace(/[\[\]]/g, "\\$&"); 5 | var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), 6 | results = regex.exec(url); 7 | if (!results) return null; 8 | if (!results[2]) return ""; 9 | return decodeURIComponent(results[2].replace(/\+/g, " ")); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/calls/components/CallForwarding/CallForwardingBanner.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { View, Text } from 'react-native'; 3 | import { Icon } from 'react-native-elements'; 4 | 5 | const CallForwardingBanner = ({ callForwarding }) => { 6 | if ( 7 | callForwarding['simultaneous-ring'] || 8 | callForwarding['call-forwarding'] 9 | ) { 10 | return ( 11 | 20 | 26 | 29 | Call-Forwarding enabled 30 | 31 | 32 | ); 33 | } 34 | return null; 35 | }; 36 | 37 | export default CallForwardingBanner; 38 | -------------------------------------------------------------------------------- /src/calls/components/CallForwarding/CallForwardingBanner.test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | * @lint-ignore-every XPLATJSCOPYRIGHT1 4 | */ 5 | 6 | import 'react-native'; 7 | import React from 'react'; 8 | // Note: test renderer must be required after react-native. 9 | import renderer from 'react-test-renderer'; 10 | 11 | import CallForwardingBanner from './CallForwardingBanner'; 12 | 13 | it('renders correctly', () => { 14 | const callForwardingConfig = { 15 | callForwarding: { 16 | 'simultaneous-ring': false 17 | } 18 | }; 19 | renderer.create( 20 | 21 | ); 22 | }); 23 | -------------------------------------------------------------------------------- /src/calls/components/CallForwarding/CallForwardingBannerContainer.js: -------------------------------------------------------------------------------- 1 | import { connect } from 'react-redux'; 2 | import CallForwardingBanner from './CallForwardingBanner'; 3 | 4 | function mapStateToProps({ callForwarding }) { 5 | return { 6 | callForwarding: callForwarding.status 7 | }; 8 | } 9 | 10 | export default connect(mapStateToProps)(CallForwardingBanner); 11 | -------------------------------------------------------------------------------- /src/calls/components/DialpadForm/Dialpad/DialpadStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet } from 'react-native'; 2 | 3 | export default StyleSheet.create({ 4 | mainText: { 5 | fontSize: 20, 6 | color: 'black', 7 | textAlign: 'center', 8 | width: '100%' 9 | }, 10 | subText: { 11 | width: '100%', 12 | fontSize: 10, 13 | textAlign: 'center', 14 | color: 'rgba(0,0,0,0.2)' 15 | }, 16 | disabled: { 17 | opacity: 0.3 18 | } 19 | }); 20 | -------------------------------------------------------------------------------- /src/calls/components/DialpadForm/DialpadFormStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native'; 2 | import ColorPalette from '../../../styles/ColorPalette'; 3 | 4 | export default StyleSheet.create({ 5 | phoneNumberRow: { 6 | flexDirection: 'row', 7 | width: Dimensions.get('screen').width 8 | }, 9 | phoneNumberSideColumn: { 10 | width: Dimensions.get('screen').width / 7, 11 | alignSelf: 'center' 12 | }, 13 | phoneNumberCenterColumn: { 14 | width: (Dimensions.get('screen').width / 7) * 5 15 | }, 16 | phoneNumberInput: { 17 | textAlign: 'center', 18 | color: 'black', 19 | fontSize: 30 20 | }, 21 | callButtonContainer: { 22 | alignItems: 'center' 23 | }, 24 | callButton: { 25 | alignItems: 'center', 26 | justifyContent: 'center', 27 | width: 70, 28 | height: 70, 29 | backgroundColor: ColorPalette.callBtnGreen, 30 | borderRadius: 50 31 | }, 32 | disabled: { 33 | opacity: 0.3 34 | } 35 | }); 36 | -------------------------------------------------------------------------------- /src/calls/components/DisconnectForm/DisconnectForm.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import { ListItem } from 'react-native-elements'; 4 | 5 | import { withNavigation } from 'react-navigation'; 6 | import { withPhoneService } from '../../providers/PhoneProvider/PhoneService'; 7 | 8 | export function DisconnectForm({ phoneService, navigation }) { 9 | /** 10 | * Register the user in the Telephony Backend 11 | */ 12 | const disconnectUserAction = async () => { 13 | await phoneService.disconnectUser(); 14 | navigation.navigate('RegisterLoading'); 15 | }; 16 | 17 | return ( 18 | 25 | ); 26 | } 27 | 28 | DisconnectForm.propTypes = { 29 | phoneService: PropTypes.shape({ 30 | disconnectUser: PropTypes.func.isRequired 31 | }).isRequired 32 | }; 33 | 34 | const DisconnectFormWithNavigation = withNavigation( 35 | withPhoneService(DisconnectForm) 36 | ); 37 | 38 | export default DisconnectFormWithNavigation; 39 | -------------------------------------------------------------------------------- /src/calls/components/HangupButton/HangupButton.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import { Icon, Button } from 'react-native-elements'; 4 | 5 | import { withPhoneService } from '../../providers/PhoneProvider/PhoneService'; 6 | 7 | function HangupForm({ phoneService }) { 8 | const hangupCall = () => { 9 | phoneService.hangUpCurrentCallAction(); 10 | }; 11 | 12 | return ( 13 |