├── .gitignore ├── LICENSE ├── README.md ├── RNVoipPushNotification.podspec ├── index.d.ts ├── index.js ├── ios ├── RNVoipPushNotification.xcodeproj │ └── project.pbxproj └── RNVoipPushNotification │ ├── RNVoipPushNotificationManager.h │ └── RNVoipPushNotificationManager.m └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/README.md -------------------------------------------------------------------------------- /RNVoipPushNotification.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/RNVoipPushNotification.podspec -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNVoipPushNotification.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/ios/RNVoipPushNotification.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNVoipPushNotification/RNVoipPushNotificationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/ios/RNVoipPushNotification/RNVoipPushNotificationManager.h -------------------------------------------------------------------------------- /ios/RNVoipPushNotification/RNVoipPushNotificationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/ios/RNVoipPushNotification/RNVoipPushNotificationManager.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-webrtc/react-native-voip-push-notification/HEAD/package.json --------------------------------------------------------------------------------