├── .eslintrc ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierrc ├── DRM.md ├── DRMType.js ├── FilterType.js ├── LICENSE ├── README.md ├── TextTrackType.js ├── Video.js ├── VideoResizeMode.js ├── ViewPropTypes ├── android-exoplayer ├── README.md ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── brentvatne │ │ ├── exoplayer │ │ ├── AspectRatioFrameLayout.java │ │ ├── DataSourceUtil.java │ │ ├── DefaultReactExoplayerConfig.java │ │ ├── ExoPlayerView.java │ │ ├── RawResourceDataSourceFactory.java │ │ ├── ReactExoplayerConfig.java │ │ ├── ReactExoplayerView.java │ │ ├── ReactExoplayerViewManager.java │ │ ├── ResizeMode.java │ │ └── VideoEventEmitter.java │ │ ├── react │ │ └── ReactVideoPackage.java │ │ └── receiver │ │ ├── AudioBecomingNoisyReceiver.java │ │ └── BecomingNoisyListener.java │ └── res │ ├── layout │ └── exo_player_control_view.xml │ └── values │ └── strings.xml ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ ├── android │ └── vending │ │ └── expansion │ │ └── zipfile │ │ ├── APEZProvider.java │ │ ├── APKExpansionSupport.java │ │ └── ZipResourceFile.java │ └── brentvatne │ └── react │ ├── ReactVideoPackage.java │ ├── ReactVideoView.java │ └── ReactVideoViewManager.java ├── docs ├── AppTransportSecuritySetting.png ├── caching.md ├── tvOS-step-1.jpg ├── tvOS-step-2.jpg ├── tvOS-step-3.jpg └── tvOS-step-4.jpg ├── dom ├── LICENSE.md ├── RCTVideo.js ├── RCTVideoEvent.js ├── RCTVideoManager.js ├── index.js ├── resizeModes.js └── types.js ├── examples ├── basic │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── android │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── videoplayer │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.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 │ ├── babel.config.js │ ├── broadchurch.mp4 │ ├── index.android.js │ ├── index.ios.js │ ├── index.windows.js │ ├── ios │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── VideoPlayer-tvOS.plist │ │ ├── VideoPlayer.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── VideoPlayer-tvOS.xcscheme │ │ │ │ └── VideoPlayer.xcscheme │ │ ├── VideoPlayer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── main.jsbundle │ │ └── main.m │ ├── metro.config.js │ ├── package.json │ ├── windows │ │ ├── .gitignore │ │ ├── VideoPlayer.sln │ │ └── VideoPlayer │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── MainPage.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ ├── VideoPlayer.csproj │ │ │ ├── VideoPlayer_TemporaryKey.pfx │ │ │ └── project.json │ └── yarn.lock ├── embed-and-fullscreen │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .vscode │ │ ├── .react │ │ │ ├── debuggerWorker.js │ │ │ ├── index.ios.bundle │ │ │ └── index.ios.map │ │ ├── launch.json │ │ └── settings.json │ ├── .watchmanconfig │ ├── Utils.js │ ├── broadchurch.mp4 │ ├── index.ios.js │ ├── index.windows.js │ ├── ios │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Info.plist │ │ ├── VideoPlayer-tvOS.plist │ │ ├── VideoPlayer.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── VideoPlayer-tvOS.xcscheme │ │ │ │ └── VideoPlayer.xcscheme │ │ ├── VideoPlayer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── main.jsbundle │ │ └── main.m │ └── rn-cli.config.js └── video-caching │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.ios.js │ ├── App.js │ ├── README.md │ ├── __tests__ │ └── App.js │ ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── videocaching │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.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 │ ├── index.js │ ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── VideoCaching-tvOS │ │ └── Info.plist │ ├── VideoCaching-tvOSTests │ │ └── Info.plist │ ├── VideoCaching.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── VideoCaching-tvOS.xcscheme │ │ │ └── VideoCaching.xcscheme │ ├── VideoCaching │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── VideoCachingTests │ │ ├── Info.plist │ │ └── VideoCachingTests.m │ ├── package.json │ ├── rn-cli.config.js │ └── update.sh ├── index.d.ts ├── ios ├── RCTVideo.xcodeproj │ └── project.pbxproj ├── Video │ ├── RCTVideo.h │ ├── RCTVideo.m │ ├── RCTVideoManager.h │ ├── RCTVideoManager.m │ ├── RCTVideoPlayerViewController.h │ ├── RCTVideoPlayerViewController.m │ ├── RCTVideoPlayerViewControllerDelegate.h │ ├── RNPhotosFrameworkExtension.h │ ├── RNPhotosFrameworkExtension.m │ ├── UIView+FindUIViewController.h │ └── UIView+FindUIViewController.m └── VideoCaching │ ├── RCTVideoCache.h │ └── RCTVideoCache.m ├── package.json ├── react-native-fast-video.podspec ├── tsconfig.json └── windows ├── .gitignore └── ReactNativeVideoCPP ├── PropertySheet.props ├── ReactNativeVideoCPP.def ├── ReactNativeVideoCPP.vcxproj ├── ReactNativeVideoCPP.vcxproj.filters ├── ReactPackageProvider.cpp ├── ReactPackageProvider.h ├── ReactPackageProvider.idl ├── ReactVideoView.cpp ├── ReactVideoView.h ├── ReactVideoView.idl ├── ReactVideoViewManager.cpp ├── ReactVideoViewManager.h ├── packages.config ├── pch.cpp └── pch.h /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@react-native-community", 3 | } -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/.prettierrc -------------------------------------------------------------------------------- /DRM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/DRM.md -------------------------------------------------------------------------------- /DRMType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/DRMType.js -------------------------------------------------------------------------------- /FilterType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/FilterType.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/README.md -------------------------------------------------------------------------------- /TextTrackType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/TextTrackType.js -------------------------------------------------------------------------------- /Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/Video.js -------------------------------------------------------------------------------- /VideoResizeMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/VideoResizeMode.js -------------------------------------------------------------------------------- /ViewPropTypes: -------------------------------------------------------------------------------- 1 | M Video.js 2 | -------------------------------------------------------------------------------- /android-exoplayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/README.md -------------------------------------------------------------------------------- /android-exoplayer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/build.gradle -------------------------------------------------------------------------------- /android-exoplayer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/AspectRatioFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/AspectRatioFrameLayout.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/DataSourceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/DataSourceUtil.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/DefaultReactExoplayerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/DefaultReactExoplayerConfig.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/ExoPlayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/ExoPlayerView.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/RawResourceDataSourceFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/RawResourceDataSourceFactory.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/ReactExoplayerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/ReactExoplayerConfig.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/ReactExoplayerViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/ReactExoplayerViewManager.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/ResizeMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/ResizeMode.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/exoplayer/VideoEventEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/exoplayer/VideoEventEmitter.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/react/ReactVideoPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/react/ReactVideoPackage.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/receiver/AudioBecomingNoisyReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/receiver/AudioBecomingNoisyReceiver.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/java/com/brentvatne/receiver/BecomingNoisyListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/java/com/brentvatne/receiver/BecomingNoisyListener.java -------------------------------------------------------------------------------- /android-exoplayer/src/main/res/layout/exo_player_control_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/res/layout/exo_player_control_view.xml -------------------------------------------------------------------------------- /android-exoplayer/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android-exoplayer/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/android/vending/expansion/zipfile/APEZProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android/src/main/java/com/android/vending/expansion/zipfile/APEZProvider.java -------------------------------------------------------------------------------- /android/src/main/java/com/android/vending/expansion/zipfile/APKExpansionSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android/src/main/java/com/android/vending/expansion/zipfile/APKExpansionSupport.java -------------------------------------------------------------------------------- /android/src/main/java/com/android/vending/expansion/zipfile/ZipResourceFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android/src/main/java/com/android/vending/expansion/zipfile/ZipResourceFile.java -------------------------------------------------------------------------------- /android/src/main/java/com/brentvatne/react/ReactVideoPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android/src/main/java/com/brentvatne/react/ReactVideoPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/brentvatne/react/ReactVideoView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android/src/main/java/com/brentvatne/react/ReactVideoView.java -------------------------------------------------------------------------------- /android/src/main/java/com/brentvatne/react/ReactVideoViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/android/src/main/java/com/brentvatne/react/ReactVideoViewManager.java -------------------------------------------------------------------------------- /docs/AppTransportSecuritySetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/docs/AppTransportSecuritySetting.png -------------------------------------------------------------------------------- /docs/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/docs/caching.md -------------------------------------------------------------------------------- /docs/tvOS-step-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/docs/tvOS-step-1.jpg -------------------------------------------------------------------------------- /docs/tvOS-step-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/docs/tvOS-step-2.jpg -------------------------------------------------------------------------------- /docs/tvOS-step-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/docs/tvOS-step-3.jpg -------------------------------------------------------------------------------- /docs/tvOS-step-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/docs/tvOS-step-4.jpg -------------------------------------------------------------------------------- /dom/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/dom/LICENSE.md -------------------------------------------------------------------------------- /dom/RCTVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/dom/RCTVideo.js -------------------------------------------------------------------------------- /dom/RCTVideoEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/dom/RCTVideoEvent.js -------------------------------------------------------------------------------- /dom/RCTVideoManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/dom/RCTVideoManager.js -------------------------------------------------------------------------------- /dom/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | module.exports = require("./RCTVideoManager"); 4 | -------------------------------------------------------------------------------- /dom/resizeModes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/dom/resizeModes.js -------------------------------------------------------------------------------- /dom/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/dom/types.js -------------------------------------------------------------------------------- /examples/basic/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/.buckconfig -------------------------------------------------------------------------------- /examples/basic/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/.flowconfig -------------------------------------------------------------------------------- /examples/basic/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /examples/basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/.gitignore -------------------------------------------------------------------------------- /examples/basic/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/basic/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/BUCK -------------------------------------------------------------------------------- /examples/basic/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/build.gradle -------------------------------------------------------------------------------- /examples/basic/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/java/com/videoplayer/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/java/com/videoplayer/MainActivity.java -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/java/com/videoplayer/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/java/com/videoplayer/MainApplication.java -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/basic/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/basic/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/build.gradle -------------------------------------------------------------------------------- /examples/basic/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/gradle.properties -------------------------------------------------------------------------------- /examples/basic/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/basic/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/basic/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/gradlew -------------------------------------------------------------------------------- /examples/basic/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/gradlew.bat -------------------------------------------------------------------------------- /examples/basic/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/keystores/BUCK -------------------------------------------------------------------------------- /examples/basic/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /examples/basic/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/android/settings.gradle -------------------------------------------------------------------------------- /examples/basic/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/babel.config.js -------------------------------------------------------------------------------- /examples/basic/broadchurch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/broadchurch.mp4 -------------------------------------------------------------------------------- /examples/basic/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/index.android.js -------------------------------------------------------------------------------- /examples/basic/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/index.ios.js -------------------------------------------------------------------------------- /examples/basic/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/index.windows.js -------------------------------------------------------------------------------- /examples/basic/ios/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/AppDelegate.h -------------------------------------------------------------------------------- /examples/basic/ios/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/AppDelegate.m -------------------------------------------------------------------------------- /examples/basic/ios/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/basic/ios/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/basic/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/Info.plist -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer-tvOS.plist -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer.xcodeproj/xcshareddata/xcschemes/VideoPlayer-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer.xcodeproj/xcshareddata/xcschemes/VideoPlayer-tvOS.xcscheme -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer.xcodeproj/xcshareddata/xcschemes/VideoPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer.xcodeproj/xcshareddata/xcschemes/VideoPlayer.xcscheme -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer/AppDelegate.h -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer/AppDelegate.m -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer/Info.plist -------------------------------------------------------------------------------- /examples/basic/ios/VideoPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/VideoPlayer/main.m -------------------------------------------------------------------------------- /examples/basic/ios/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/main.jsbundle -------------------------------------------------------------------------------- /examples/basic/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/ios/main.m -------------------------------------------------------------------------------- /examples/basic/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/metro.config.js -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/package.json -------------------------------------------------------------------------------- /examples/basic/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/.gitignore -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer.sln -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/App.xaml -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/App.xaml.cs -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Assets/StoreLogo.png -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/MainPage.cs -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Package.appxmanifest -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/Properties/Default.rd.xml -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/VideoPlayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/VideoPlayer.csproj -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/VideoPlayer_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/VideoPlayer_TemporaryKey.pfx -------------------------------------------------------------------------------- /examples/basic/windows/VideoPlayer/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/windows/VideoPlayer/project.json -------------------------------------------------------------------------------- /examples/basic/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/basic/yarn.lock -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/.buckconfig -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/.flowconfig -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/.gitignore -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.vscode/.react/debuggerWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/.vscode/.react/debuggerWorker.js -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.vscode/.react/index.ios.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/.vscode/.react/index.ios.bundle -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.vscode/.react/index.ios.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/.vscode/.react/index.ios.map -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/.vscode/launch.json -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/.vscode/settings.json -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/Utils.js -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/broadchurch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/broadchurch.mp4 -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/index.ios.js -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/index.windows.js -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/AppDelegate.h -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/AppDelegate.m -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/Info.plist -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer-tvOS.plist -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer.xcodeproj/xcshareddata/xcschemes/VideoPlayer-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer.xcodeproj/xcshareddata/xcschemes/VideoPlayer-tvOS.xcscheme -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer.xcodeproj/xcshareddata/xcschemes/VideoPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer.xcodeproj/xcshareddata/xcschemes/VideoPlayer.xcscheme -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer/AppDelegate.h -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer/AppDelegate.m -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer/Info.plist -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/VideoPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/VideoPlayer/main.m -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/main.jsbundle -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/ios/main.m -------------------------------------------------------------------------------- /examples/embed-and-fullscreen/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/embed-and-fullscreen/rn-cli.config.js -------------------------------------------------------------------------------- /examples/video-caching/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/video-caching/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/.buckconfig -------------------------------------------------------------------------------- /examples/video-caching/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/.flowconfig -------------------------------------------------------------------------------- /examples/video-caching/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /examples/video-caching/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/.gitignore -------------------------------------------------------------------------------- /examples/video-caching/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/video-caching/App.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/App.ios.js -------------------------------------------------------------------------------- /examples/video-caching/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/App.js -------------------------------------------------------------------------------- /examples/video-caching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/README.md -------------------------------------------------------------------------------- /examples/video-caching/__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/__tests__/App.js -------------------------------------------------------------------------------- /examples/video-caching/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/BUCK -------------------------------------------------------------------------------- /examples/video-caching/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/build.gradle -------------------------------------------------------------------------------- /examples/video-caching/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/java/com/videocaching/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/java/com/videocaching/MainActivity.java -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/java/com/videocaching/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/java/com/videocaching/MainApplication.java -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/video-caching/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/video-caching/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/build.gradle -------------------------------------------------------------------------------- /examples/video-caching/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/gradle.properties -------------------------------------------------------------------------------- /examples/video-caching/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/video-caching/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/video-caching/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/gradlew -------------------------------------------------------------------------------- /examples/video-caching/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/gradlew.bat -------------------------------------------------------------------------------- /examples/video-caching/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/keystores/BUCK -------------------------------------------------------------------------------- /examples/video-caching/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /examples/video-caching/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'VideoCaching' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /examples/video-caching/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/app.json -------------------------------------------------------------------------------- /examples/video-caching/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/index.js -------------------------------------------------------------------------------- /examples/video-caching/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/Podfile -------------------------------------------------------------------------------- /examples/video-caching/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching-tvOS/Info.plist -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching-tvOSTests/Info.plist -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching.xcodeproj/xcshareddata/xcschemes/VideoCaching-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching.xcodeproj/xcshareddata/xcschemes/VideoCaching-tvOS.xcscheme -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching.xcodeproj/xcshareddata/xcschemes/VideoCaching.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching.xcodeproj/xcshareddata/xcschemes/VideoCaching.xcscheme -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching/AppDelegate.h -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching/AppDelegate.m -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching/Info.plist -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCaching/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCaching/main.m -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCachingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCachingTests/Info.plist -------------------------------------------------------------------------------- /examples/video-caching/ios/VideoCachingTests/VideoCachingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/ios/VideoCachingTests/VideoCachingTests.m -------------------------------------------------------------------------------- /examples/video-caching/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/package.json -------------------------------------------------------------------------------- /examples/video-caching/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/rn-cli.config.js -------------------------------------------------------------------------------- /examples/video-caching/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/examples/video-caching/update.sh -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/index.d.ts -------------------------------------------------------------------------------- /ios/RCTVideo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/RCTVideo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Video/RCTVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RCTVideo.h -------------------------------------------------------------------------------- /ios/Video/RCTVideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RCTVideo.m -------------------------------------------------------------------------------- /ios/Video/RCTVideoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RCTVideoManager.h -------------------------------------------------------------------------------- /ios/Video/RCTVideoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RCTVideoManager.m -------------------------------------------------------------------------------- /ios/Video/RCTVideoPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RCTVideoPlayerViewController.h -------------------------------------------------------------------------------- /ios/Video/RCTVideoPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RCTVideoPlayerViewController.m -------------------------------------------------------------------------------- /ios/Video/RCTVideoPlayerViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RCTVideoPlayerViewControllerDelegate.h -------------------------------------------------------------------------------- /ios/Video/RNPhotosFrameworkExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RNPhotosFrameworkExtension.h -------------------------------------------------------------------------------- /ios/Video/RNPhotosFrameworkExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/RNPhotosFrameworkExtension.m -------------------------------------------------------------------------------- /ios/Video/UIView+FindUIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/UIView+FindUIViewController.h -------------------------------------------------------------------------------- /ios/Video/UIView+FindUIViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/Video/UIView+FindUIViewController.m -------------------------------------------------------------------------------- /ios/VideoCaching/RCTVideoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/VideoCaching/RCTVideoCache.h -------------------------------------------------------------------------------- /ios/VideoCaching/RCTVideoCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/ios/VideoCaching/RCTVideoCache.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/package.json -------------------------------------------------------------------------------- /react-native-fast-video.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/react-native-fast-video.podspec -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/tsconfig.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/PropertySheet.props -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactNativeVideoCPP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactNativeVideoCPP.def -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactNativeVideoCPP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactNativeVideoCPP.vcxproj -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactNativeVideoCPP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactNativeVideoCPP.vcxproj.filters -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactPackageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactPackageProvider.cpp -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactPackageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactPackageProvider.h -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactPackageProvider.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactPackageProvider.idl -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactVideoView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactVideoView.cpp -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactVideoView.h -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactVideoView.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactVideoView.idl -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactVideoViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactVideoViewManager.cpp -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/ReactVideoViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/ReactVideoViewManager.h -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/packages.config -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /windows/ReactNativeVideoCPP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuvent/react-native-fast-video/HEAD/windows/ReactNativeVideoCPP/pch.h --------------------------------------------------------------------------------