├── LICENSE ├── LivePlayer.js ├── RCTLiveStream.podspec ├── README.md ├── android ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── org │ │ └── wonday │ │ └── live │ │ ├── LivePlayerViewManager.java │ │ ├── RCTLivePlayerView.java │ │ └── RNLiveStreamPackage.java │ └── res │ └── values │ └── strings.xml ├── index.js ├── ios ├── RCTLivePlayerManager.m ├── RCTLivePlayerView.h ├── RCTLivePlayerView.m ├── RCTLiveStream.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── rajaishwary.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── libs │ └── NodeMediaClient.framework │ ├── Headers │ ├── NodeMediaClient.h │ ├── NodePlayer.h │ ├── NodePublisher.h │ └── NodeStreamer.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── NodeMediaClient └── package.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /LivePlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/LivePlayer.js -------------------------------------------------------------------------------- /RCTLiveStream.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/RCTLiveStream.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/org/wonday/live/LivePlayerViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/android/src/main/java/org/wonday/live/LivePlayerViewManager.java -------------------------------------------------------------------------------- /android/src/main/java/org/wonday/live/RCTLivePlayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/android/src/main/java/org/wonday/live/RCTLivePlayerView.java -------------------------------------------------------------------------------- /android/src/main/java/org/wonday/live/RNLiveStreamPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/android/src/main/java/org/wonday/live/RNLiveStreamPackage.java -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/index.js -------------------------------------------------------------------------------- /ios/RCTLivePlayerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/RCTLivePlayerManager.m -------------------------------------------------------------------------------- /ios/RCTLivePlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/RCTLivePlayerView.h -------------------------------------------------------------------------------- /ios/RCTLivePlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/RCTLivePlayerView.m -------------------------------------------------------------------------------- /ios/RCTLiveStream.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/RCTLiveStream.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RCTLiveStream.xcodeproj/xcuserdata/rajaishwary.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/RCTLiveStream.xcodeproj/xcuserdata/rajaishwary.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/libs/NodeMediaClient.framework/Headers/NodeMediaClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/libs/NodeMediaClient.framework/Headers/NodeMediaClient.h -------------------------------------------------------------------------------- /ios/libs/NodeMediaClient.framework/Headers/NodePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/libs/NodeMediaClient.framework/Headers/NodePlayer.h -------------------------------------------------------------------------------- /ios/libs/NodeMediaClient.framework/Headers/NodePublisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/libs/NodeMediaClient.framework/Headers/NodePublisher.h -------------------------------------------------------------------------------- /ios/libs/NodeMediaClient.framework/Headers/NodeStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/libs/NodeMediaClient.framework/Headers/NodeStreamer.h -------------------------------------------------------------------------------- /ios/libs/NodeMediaClient.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/libs/NodeMediaClient.framework/Info.plist -------------------------------------------------------------------------------- /ios/libs/NodeMediaClient.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/libs/NodeMediaClient.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/libs/NodeMediaClient.framework/NodeMediaClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/ios/libs/NodeMediaClient.framework/NodeMediaClient -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonday/react-native-live-stream/HEAD/package.json --------------------------------------------------------------------------------