├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .release.json ├── .yarnrc ├── CHANGELOG.md ├── COMMON_ISSUES.md ├── CONTRIBUTING.md ├── KNOWN_ISSUES.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── twiliovoicereactnative │ │ ├── AudioSwitchManager.java │ │ ├── CallListenerProxy.java │ │ ├── CallMessageListenerProxy.java │ │ ├── CallRecordDatabase.java │ │ ├── ConfigurationProperties.java │ │ ├── Constants.java │ │ ├── JSEventEmitter.java │ │ ├── MediaPlayerManager.java │ │ ├── NotificationUtility.java │ │ ├── PreflightTestListenerProxy.java │ │ ├── PreflightTestRecordDatabase.java │ │ ├── ReactNativeArgumentsSerializer.java │ │ ├── SDKLog.java │ │ ├── StatsListenerProxy.java │ │ ├── TwilioVoiceReactNativeModule.java │ │ ├── TwilioVoiceReactNativePackage.java │ │ ├── VoiceActivityProxy.java │ │ ├── VoiceApplicationProxy.java │ │ ├── VoiceFirebaseMessagingService.java │ │ └── VoiceService.java │ └── res │ ├── drawable │ ├── answered_call_small_icon.png │ ├── ic_launcher_round.png │ ├── ic_launcher_sdk.png │ ├── incoming_call_small_icon.png │ └── outgoing_call_small_icon.png │ ├── raw │ ├── disconnect.wav │ ├── incoming.wav │ ├── outgoing.wav │ ├── ringtone.wav │ └── silent.wav │ ├── values-night │ └── colors.xml │ └── values │ ├── colors.xml │ ├── config.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── api-extractor.json ├── api └── voice-react-native-sdk.api.md ├── babel.config.js ├── constants ├── constants.java.template ├── constants.objc.template ├── constants.src └── constants.typescript.template ├── docs ├── applications-own-pushkit-handler.md ├── customize-notifications.md ├── getting-started-android-java.md ├── getting-started-android-kotlin.md ├── getting-started-ios.md ├── migration-guide-beta.4.md ├── out-of-band-firebase-messaging-service.md └── play-outgoing-call-ringback-tone.md ├── ios ├── TwilioVoicePushRegistry.h ├── TwilioVoicePushRegistry.m ├── TwilioVoiceReactNative+CallInvite.m ├── TwilioVoiceReactNative+CallKit.m ├── TwilioVoiceReactNative+CallMessage.m ├── TwilioVoiceReactNative+PreflightTest.m ├── TwilioVoiceReactNative.h ├── TwilioVoiceReactNative.m ├── TwilioVoiceReactNative.xcodeproj │ └── project.pbxproj └── Utilities │ └── TwilioVoiceStatsReport.h ├── package.json ├── scripts ├── bootstrap.js ├── errors.js ├── generate-constants.js ├── generate-errors.js └── substitute-constants-version.js ├── src ├── AudioDevice.tsx ├── Call.tsx ├── CallInvite.tsx ├── CallMessage │ ├── CallMessage.ts │ ├── IncomingCallMessage.ts │ └── OutgoingCallMessage.ts ├── PreflightTest.ts ├── Voice.tsx ├── __mock-data__ │ └── PreflightTest.ts ├── __mocks__ │ ├── AudioDevice.ts │ ├── Call.ts │ ├── CallInvite.ts │ ├── CallMessage.ts │ ├── Error.ts │ ├── RTCStats.ts │ ├── Voice.ts │ └── common.ts ├── __tests__ │ ├── AudioDevice.test.ts │ ├── Call.test.ts │ ├── CallInvite.test.ts │ ├── CallMessage │ │ ├── CallMessage.test.ts │ │ ├── IncomingCallMessage.test.ts │ │ └── OutgoingCallMessage.test.ts │ ├── PreflightTest.test.ts │ ├── PreflightTestOptions.test.ts │ ├── RTCStats.test.ts │ ├── Voice.test.ts │ ├── constants.test.ts │ └── error │ │ ├── generated.test.ts │ │ ├── index.test.ts │ │ └── utility.test.ts ├── common.ts ├── error │ ├── InvalidArgumentError.ts │ ├── InvalidStateError.ts │ ├── TwilioError.ts │ ├── UnsupportedPlatformError.ts │ ├── generated.ts │ ├── index.ts │ └── utility.ts ├── index.tsx ├── type │ ├── AudioCodec.ts │ ├── AudioDevice.ts │ ├── Call.ts │ ├── CallInvite.ts │ ├── CallKit.ts │ ├── CallMessage.ts │ ├── Error.ts │ ├── Ice.ts │ ├── NativeModule.ts │ ├── PreflightTest.ts │ ├── RTCStats.ts │ ├── Voice.ts │ └── common.ts └── utility │ └── preflightTestOptions.ts ├── test ├── app │ ├── .bundle │ │ └── config │ ├── .detoxrc.js │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── Gemfile │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── twiliovoicereactnative │ │ │ │ │ └── DetoxTest.java │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── twiliovoicereactnative │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── network_security_config.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── e2e │ │ ├── common │ │ │ ├── logParser.ts │ │ │ ├── rtcStatsValidators.ts │ │ │ └── twilioClient.ts │ │ ├── jest.config.js │ │ ├── relay │ │ │ └── server.js │ │ └── suites │ │ │ ├── call.test.ts │ │ │ ├── callMessage.test.ts │ │ │ ├── preflightTest.test.ts │ │ │ ├── registration.test.ts │ │ │ └── voice.test.ts │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── TwilioVoiceExampleNewArch.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TwilioVoiceExampleNewArch.xcscheme │ │ └── TwilioVoiceExampleNewArch │ │ │ ├── AppDelegate.swift │ │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── TwilioVoiceExampleNewArch.entitlements │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── CallSuite.tsx │ │ ├── Dialer.tsx │ │ ├── Grid.tsx │ │ ├── PreflightTestSuite.tsx │ │ ├── components │ │ │ └── CallMessage.tsx │ │ ├── hook.ts │ │ ├── tokenUtility.ts │ │ └── type.ts │ └── yarn.lock └── scripts │ ├── common.mjs │ └── gen-token.mjs ├── tsconfig.build.json ├── tsconfig.json ├── twilio-voice-react-native.podspec └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/.npmignore -------------------------------------------------------------------------------- /.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/.release.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMMON_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/COMMON_ISSUES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /KNOWN_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/KNOWN_ISSUES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/AudioSwitchManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/AudioSwitchManager.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/CallListenerProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/CallListenerProxy.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/CallMessageListenerProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/CallMessageListenerProxy.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/CallRecordDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/CallRecordDatabase.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/ConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/ConfigurationProperties.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/Constants.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/JSEventEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/JSEventEmitter.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/MediaPlayerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/MediaPlayerManager.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/NotificationUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/NotificationUtility.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/PreflightTestListenerProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/PreflightTestListenerProxy.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/PreflightTestRecordDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/PreflightTestRecordDatabase.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/ReactNativeArgumentsSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/ReactNativeArgumentsSerializer.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/SDKLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/SDKLog.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/StatsListenerProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/StatsListenerProxy.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/TwilioVoiceReactNativeModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/TwilioVoiceReactNativeModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/TwilioVoiceReactNativePackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/TwilioVoiceReactNativePackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/VoiceActivityProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/VoiceActivityProxy.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/VoiceApplicationProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/VoiceApplicationProxy.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/VoiceFirebaseMessagingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/VoiceFirebaseMessagingService.java -------------------------------------------------------------------------------- /android/src/main/java/com/twiliovoicereactnative/VoiceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/java/com/twiliovoicereactnative/VoiceService.java -------------------------------------------------------------------------------- /android/src/main/res/drawable/answered_call_small_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/drawable/answered_call_small_icon.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/drawable/ic_launcher_round.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/ic_launcher_sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/drawable/ic_launcher_sdk.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/incoming_call_small_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/drawable/incoming_call_small_icon.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/outgoing_call_small_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/drawable/outgoing_call_small_icon.png -------------------------------------------------------------------------------- /android/src/main/res/raw/disconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/raw/disconnect.wav -------------------------------------------------------------------------------- /android/src/main/res/raw/incoming.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/raw/incoming.wav -------------------------------------------------------------------------------- /android/src/main/res/raw/outgoing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/raw/outgoing.wav -------------------------------------------------------------------------------- /android/src/main/res/raw/ringtone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/raw/ringtone.wav -------------------------------------------------------------------------------- /android/src/main/res/raw/silent.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/raw/silent.wav -------------------------------------------------------------------------------- /android/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/src/main/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/values/config.xml -------------------------------------------------------------------------------- /android/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/api-extractor.json -------------------------------------------------------------------------------- /api/voice-react-native-sdk.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/api/voice-react-native-sdk.api.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /constants/constants.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/constants/constants.java.template -------------------------------------------------------------------------------- /constants/constants.objc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/constants/constants.objc.template -------------------------------------------------------------------------------- /constants/constants.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/constants/constants.src -------------------------------------------------------------------------------- /constants/constants.typescript.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/constants/constants.typescript.template -------------------------------------------------------------------------------- /docs/applications-own-pushkit-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/docs/applications-own-pushkit-handler.md -------------------------------------------------------------------------------- /docs/customize-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/docs/customize-notifications.md -------------------------------------------------------------------------------- /docs/getting-started-android-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/docs/getting-started-android-java.md -------------------------------------------------------------------------------- /docs/getting-started-android-kotlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/docs/getting-started-android-kotlin.md -------------------------------------------------------------------------------- /docs/getting-started-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/docs/getting-started-ios.md -------------------------------------------------------------------------------- /docs/migration-guide-beta.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/docs/migration-guide-beta.4.md -------------------------------------------------------------------------------- /docs/out-of-band-firebase-messaging-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/docs/out-of-band-firebase-messaging-service.md -------------------------------------------------------------------------------- /docs/play-outgoing-call-ringback-tone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/docs/play-outgoing-call-ringback-tone.md -------------------------------------------------------------------------------- /ios/TwilioVoicePushRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoicePushRegistry.h -------------------------------------------------------------------------------- /ios/TwilioVoicePushRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoicePushRegistry.m -------------------------------------------------------------------------------- /ios/TwilioVoiceReactNative+CallInvite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoiceReactNative+CallInvite.m -------------------------------------------------------------------------------- /ios/TwilioVoiceReactNative+CallKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoiceReactNative+CallKit.m -------------------------------------------------------------------------------- /ios/TwilioVoiceReactNative+CallMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoiceReactNative+CallMessage.m -------------------------------------------------------------------------------- /ios/TwilioVoiceReactNative+PreflightTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoiceReactNative+PreflightTest.m -------------------------------------------------------------------------------- /ios/TwilioVoiceReactNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoiceReactNative.h -------------------------------------------------------------------------------- /ios/TwilioVoiceReactNative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoiceReactNative.m -------------------------------------------------------------------------------- /ios/TwilioVoiceReactNative.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/TwilioVoiceReactNative.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Utilities/TwilioVoiceStatsReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/ios/Utilities/TwilioVoiceStatsReport.h -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /scripts/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/scripts/errors.js -------------------------------------------------------------------------------- /scripts/generate-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/scripts/generate-constants.js -------------------------------------------------------------------------------- /scripts/generate-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/scripts/generate-errors.js -------------------------------------------------------------------------------- /scripts/substitute-constants-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/scripts/substitute-constants-version.js -------------------------------------------------------------------------------- /src/AudioDevice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/AudioDevice.tsx -------------------------------------------------------------------------------- /src/Call.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/Call.tsx -------------------------------------------------------------------------------- /src/CallInvite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/CallInvite.tsx -------------------------------------------------------------------------------- /src/CallMessage/CallMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/CallMessage/CallMessage.ts -------------------------------------------------------------------------------- /src/CallMessage/IncomingCallMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/CallMessage/IncomingCallMessage.ts -------------------------------------------------------------------------------- /src/CallMessage/OutgoingCallMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/CallMessage/OutgoingCallMessage.ts -------------------------------------------------------------------------------- /src/PreflightTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/PreflightTest.ts -------------------------------------------------------------------------------- /src/Voice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/Voice.tsx -------------------------------------------------------------------------------- /src/__mock-data__/PreflightTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mock-data__/PreflightTest.ts -------------------------------------------------------------------------------- /src/__mocks__/AudioDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mocks__/AudioDevice.ts -------------------------------------------------------------------------------- /src/__mocks__/Call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mocks__/Call.ts -------------------------------------------------------------------------------- /src/__mocks__/CallInvite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mocks__/CallInvite.ts -------------------------------------------------------------------------------- /src/__mocks__/CallMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mocks__/CallMessage.ts -------------------------------------------------------------------------------- /src/__mocks__/Error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mocks__/Error.ts -------------------------------------------------------------------------------- /src/__mocks__/RTCStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mocks__/RTCStats.ts -------------------------------------------------------------------------------- /src/__mocks__/Voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mocks__/Voice.ts -------------------------------------------------------------------------------- /src/__mocks__/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__mocks__/common.ts -------------------------------------------------------------------------------- /src/__tests__/AudioDevice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/AudioDevice.test.ts -------------------------------------------------------------------------------- /src/__tests__/Call.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/Call.test.ts -------------------------------------------------------------------------------- /src/__tests__/CallInvite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/CallInvite.test.ts -------------------------------------------------------------------------------- /src/__tests__/CallMessage/CallMessage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/CallMessage/CallMessage.test.ts -------------------------------------------------------------------------------- /src/__tests__/CallMessage/IncomingCallMessage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/CallMessage/IncomingCallMessage.test.ts -------------------------------------------------------------------------------- /src/__tests__/CallMessage/OutgoingCallMessage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/CallMessage/OutgoingCallMessage.test.ts -------------------------------------------------------------------------------- /src/__tests__/PreflightTest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/PreflightTest.test.ts -------------------------------------------------------------------------------- /src/__tests__/PreflightTestOptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/PreflightTestOptions.test.ts -------------------------------------------------------------------------------- /src/__tests__/RTCStats.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/RTCStats.test.ts -------------------------------------------------------------------------------- /src/__tests__/Voice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/Voice.test.ts -------------------------------------------------------------------------------- /src/__tests__/constants.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/constants.test.ts -------------------------------------------------------------------------------- /src/__tests__/error/generated.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/error/generated.test.ts -------------------------------------------------------------------------------- /src/__tests__/error/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/error/index.test.ts -------------------------------------------------------------------------------- /src/__tests__/error/utility.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/__tests__/error/utility.test.ts -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/error/InvalidArgumentError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/error/InvalidArgumentError.ts -------------------------------------------------------------------------------- /src/error/InvalidStateError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/error/InvalidStateError.ts -------------------------------------------------------------------------------- /src/error/TwilioError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/error/TwilioError.ts -------------------------------------------------------------------------------- /src/error/UnsupportedPlatformError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/error/UnsupportedPlatformError.ts -------------------------------------------------------------------------------- /src/error/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/error/generated.ts -------------------------------------------------------------------------------- /src/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/error/index.ts -------------------------------------------------------------------------------- /src/error/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/error/utility.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/type/AudioCodec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/AudioCodec.ts -------------------------------------------------------------------------------- /src/type/AudioDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/AudioDevice.ts -------------------------------------------------------------------------------- /src/type/Call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/Call.ts -------------------------------------------------------------------------------- /src/type/CallInvite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/CallInvite.ts -------------------------------------------------------------------------------- /src/type/CallKit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/CallKit.ts -------------------------------------------------------------------------------- /src/type/CallMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/CallMessage.ts -------------------------------------------------------------------------------- /src/type/Error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/Error.ts -------------------------------------------------------------------------------- /src/type/Ice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/Ice.ts -------------------------------------------------------------------------------- /src/type/NativeModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/NativeModule.ts -------------------------------------------------------------------------------- /src/type/PreflightTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/PreflightTest.ts -------------------------------------------------------------------------------- /src/type/RTCStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/RTCStats.ts -------------------------------------------------------------------------------- /src/type/Voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/Voice.ts -------------------------------------------------------------------------------- /src/type/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/type/common.ts -------------------------------------------------------------------------------- /src/utility/preflightTestOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/src/utility/preflightTestOptions.ts -------------------------------------------------------------------------------- /test/app/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/.bundle/config -------------------------------------------------------------------------------- /test/app/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/.detoxrc.js -------------------------------------------------------------------------------- /test/app/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /test/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/.gitignore -------------------------------------------------------------------------------- /test/app/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/.prettierrc.js -------------------------------------------------------------------------------- /test/app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/Gemfile -------------------------------------------------------------------------------- /test/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/README.md -------------------------------------------------------------------------------- /test/app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/build.gradle -------------------------------------------------------------------------------- /test/app/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/debug.keystore -------------------------------------------------------------------------------- /test/app/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /test/app/android/app/src/androidTest/java/com/example/twiliovoicereactnative/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/androidTest/java/com/example/twiliovoicereactnative/DetoxTest.java -------------------------------------------------------------------------------- /test/app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /test/app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /test/app/android/app/src/main/java/com/example/twiliovoicereactnative/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/java/com/example/twiliovoicereactnative/MainActivity.kt -------------------------------------------------------------------------------- /test/app/android/app/src/main/java/com/example/twiliovoicereactnative/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/java/com/example/twiliovoicereactnative/MainApplication.kt -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /test/app/android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /test/app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/build.gradle -------------------------------------------------------------------------------- /test/app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/gradle.properties -------------------------------------------------------------------------------- /test/app/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /test/app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /test/app/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/gradlew -------------------------------------------------------------------------------- /test/app/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/gradlew.bat -------------------------------------------------------------------------------- /test/app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/android/settings.gradle -------------------------------------------------------------------------------- /test/app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/app.json -------------------------------------------------------------------------------- /test/app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/babel.config.js -------------------------------------------------------------------------------- /test/app/e2e/common/logParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/common/logParser.ts -------------------------------------------------------------------------------- /test/app/e2e/common/rtcStatsValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/common/rtcStatsValidators.ts -------------------------------------------------------------------------------- /test/app/e2e/common/twilioClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/common/twilioClient.ts -------------------------------------------------------------------------------- /test/app/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/jest.config.js -------------------------------------------------------------------------------- /test/app/e2e/relay/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/relay/server.js -------------------------------------------------------------------------------- /test/app/e2e/suites/call.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/suites/call.test.ts -------------------------------------------------------------------------------- /test/app/e2e/suites/callMessage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/suites/callMessage.test.ts -------------------------------------------------------------------------------- /test/app/e2e/suites/preflightTest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/suites/preflightTest.test.ts -------------------------------------------------------------------------------- /test/app/e2e/suites/registration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/suites/registration.test.ts -------------------------------------------------------------------------------- /test/app/e2e/suites/voice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/e2e/suites/voice.test.ts -------------------------------------------------------------------------------- /test/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/index.js -------------------------------------------------------------------------------- /test/app/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/.xcode.env -------------------------------------------------------------------------------- /test/app/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/Podfile -------------------------------------------------------------------------------- /test/app/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/Podfile.lock -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch.xcodeproj/xcshareddata/xcschemes/TwilioVoiceExampleNewArch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch.xcodeproj/xcshareddata/xcschemes/TwilioVoiceExampleNewArch.xcscheme -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch/AppDelegate.swift -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch/Info.plist -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch/LaunchScreen.storyboard -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /test/app/ios/TwilioVoiceExampleNewArch/TwilioVoiceExampleNewArch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/ios/TwilioVoiceExampleNewArch/TwilioVoiceExampleNewArch.entitlements -------------------------------------------------------------------------------- /test/app/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /test/app/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/metro.config.js -------------------------------------------------------------------------------- /test/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/package.json -------------------------------------------------------------------------------- /test/app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/App.tsx -------------------------------------------------------------------------------- /test/app/src/CallSuite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/CallSuite.tsx -------------------------------------------------------------------------------- /test/app/src/Dialer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/Dialer.tsx -------------------------------------------------------------------------------- /test/app/src/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/Grid.tsx -------------------------------------------------------------------------------- /test/app/src/PreflightTestSuite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/PreflightTestSuite.tsx -------------------------------------------------------------------------------- /test/app/src/components/CallMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/components/CallMessage.tsx -------------------------------------------------------------------------------- /test/app/src/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/hook.ts -------------------------------------------------------------------------------- /test/app/src/tokenUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/tokenUtility.ts -------------------------------------------------------------------------------- /test/app/src/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/src/type.ts -------------------------------------------------------------------------------- /test/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/app/yarn.lock -------------------------------------------------------------------------------- /test/scripts/common.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/scripts/common.mjs -------------------------------------------------------------------------------- /test/scripts/gen-token.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/test/scripts/gen-token.mjs -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /twilio-voice-react-native.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/twilio-voice-react-native.podspec -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-voice-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------