├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── AUTHORS ├── LICENSE ├── MIGRATION_v2_v3.md ├── MIGRATION_v3_v4.md ├── README.md ├── RNCallKeep.podspec ├── actions.js ├── android ├── build.gradle ├── react-native-callkeep.iml └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── io │ └── wazo │ └── callkeep │ ├── Constants.java │ ├── MapUtils.java │ ├── RNCallKeepBackgroundMessagingService.java │ ├── RNCallKeepModule.java │ ├── RNCallKeepPackage.java │ ├── VoiceConference.java │ ├── VoiceConnection.java │ └── VoiceConnectionService.java ├── docs ├── android-installation.md ├── ios-installation.md └── pictures │ ├── call-kit.png │ ├── connection-service.jpg │ ├── ios-add-build-target.png │ ├── ios-add-library.png │ ├── ios-build-phases.png │ ├── ios-info-plist.png │ ├── ios-libraries.png │ ├── ios-other-libraries.png │ ├── ios-search-paths.png │ └── ios-select-library.png ├── example ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── callkeepdemo │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── generated │ │ │ │ └── BasePackageList.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── assets │ ├── icon.png │ └── splash.png ├── babel.config.js ├── index.js ├── ios │ ├── CallKeepDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CallKeepDemo.xcscheme │ ├── CallKeepDemo.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── CallKeepDemo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── CallKeepDemoTests │ │ ├── CallKeepDemoTests.m │ │ └── Info.plist │ ├── Podfile │ └── Podfile.lock ├── package.json └── yarn.lock ├── index.d.ts ├── index.js ├── ios ├── RNCallKeep.xcodeproj │ └── project.pbxproj └── RNCallKeep │ ├── RNCallKeep.h │ └── RNCallKeep.m └── package.json /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/.npmignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION_v2_v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/MIGRATION_v2_v3.md -------------------------------------------------------------------------------- /MIGRATION_v3_v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/MIGRATION_v3_v4.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/README.md -------------------------------------------------------------------------------- /RNCallKeep.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/RNCallKeep.podspec -------------------------------------------------------------------------------- /actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/actions.js -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/react-native-callkeep.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/react-native-callkeep.iml -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/io/wazo/callkeep/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/java/io/wazo/callkeep/Constants.java -------------------------------------------------------------------------------- /android/src/main/java/io/wazo/callkeep/MapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/java/io/wazo/callkeep/MapUtils.java -------------------------------------------------------------------------------- /android/src/main/java/io/wazo/callkeep/RNCallKeepBackgroundMessagingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/java/io/wazo/callkeep/RNCallKeepBackgroundMessagingService.java -------------------------------------------------------------------------------- /android/src/main/java/io/wazo/callkeep/RNCallKeepModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/java/io/wazo/callkeep/RNCallKeepModule.java -------------------------------------------------------------------------------- /android/src/main/java/io/wazo/callkeep/RNCallKeepPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/java/io/wazo/callkeep/RNCallKeepPackage.java -------------------------------------------------------------------------------- /android/src/main/java/io/wazo/callkeep/VoiceConference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/java/io/wazo/callkeep/VoiceConference.java -------------------------------------------------------------------------------- /android/src/main/java/io/wazo/callkeep/VoiceConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/java/io/wazo/callkeep/VoiceConnection.java -------------------------------------------------------------------------------- /android/src/main/java/io/wazo/callkeep/VoiceConnectionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/android/src/main/java/io/wazo/callkeep/VoiceConnectionService.java -------------------------------------------------------------------------------- /docs/android-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/android-installation.md -------------------------------------------------------------------------------- /docs/ios-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/ios-installation.md -------------------------------------------------------------------------------- /docs/pictures/call-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/call-kit.png -------------------------------------------------------------------------------- /docs/pictures/connection-service.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/connection-service.jpg -------------------------------------------------------------------------------- /docs/pictures/ios-add-build-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/ios-add-build-target.png -------------------------------------------------------------------------------- /docs/pictures/ios-add-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/ios-add-library.png -------------------------------------------------------------------------------- /docs/pictures/ios-build-phases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/ios-build-phases.png -------------------------------------------------------------------------------- /docs/pictures/ios-info-plist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/ios-info-plist.png -------------------------------------------------------------------------------- /docs/pictures/ios-libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/ios-libraries.png -------------------------------------------------------------------------------- /docs/pictures/ios-other-libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/ios-other-libraries.png -------------------------------------------------------------------------------- /docs/pictures/ios-search-paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/ios-search-paths.png -------------------------------------------------------------------------------- /docs/pictures/ios-select-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/docs/pictures/ios-select-library.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/App.js -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/callkeepdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/java/com/callkeepdemo/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/callkeepdemo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/java/com/callkeepdemo/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/callkeepdemo/generated/BasePackageList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/java/com/callkeepdemo/generated/BasePackageList.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/keystores/BUCK -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/CallKeepDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/CallKeepDemo.xcodeproj/xcshareddata/xcschemes/CallKeepDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo.xcodeproj/xcshareddata/xcschemes/CallKeepDemo.xcscheme -------------------------------------------------------------------------------- /example/ios/CallKeepDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/CallKeepDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/CallKeepDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/CallKeepDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/CallKeepDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/CallKeepDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/CallKeepDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/CallKeepDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo/Info.plist -------------------------------------------------------------------------------- /example/ios/CallKeepDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemo/main.m -------------------------------------------------------------------------------- /example/ios/CallKeepDemoTests/CallKeepDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemoTests/CallKeepDemoTests.m -------------------------------------------------------------------------------- /example/ios/CallKeepDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/CallKeepDemoTests/Info.plist -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/package.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNCallKeep.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/ios/RNCallKeep.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNCallKeep/RNCallKeep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/ios/RNCallKeep/RNCallKeep.h -------------------------------------------------------------------------------- /ios/RNCallKeep/RNCallKeep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/ios/RNCallKeep/RNCallKeep.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/HEAD/package.json --------------------------------------------------------------------------------