chore: update repository links (#3742)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# react-native-video-docs
|
||||
|
||||
This is the documentation for the [react-native-video](github.com/react-native-video/react-native-video).
|
||||
This is the documentation for the [react-native-video](github.com/TheWidlarzGroup/react-native-video).
|
||||
Project is using [bun](https://bun.sh) to build and run the documentation.
|
||||
Framework for static site generation is [Nextra](https://nextra.site/docs)
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@@ -11,7 +11,7 @@
|
||||
"changelog": {
|
||||
"title": "Changelog",
|
||||
"newWindow": true,
|
||||
"href": "https://github.com/react-native-video/react-native-video/blob/master/CHANGELOG.md"
|
||||
"href": "https://github.com/TheWidlarzGroup/react-native-video/blob/master/CHANGELOG.md"
|
||||
},
|
||||
"separator_community": {
|
||||
"type": "separator",
|
||||
|
@@ -14,7 +14,7 @@ adTagUrl="https://pubads.g.doubleclick.net/gampad/ads?iu=/21775744923/external/v
|
||||
> NOTE: Video ads cannot start when you are using the PIP on iOS (more info available at [Google IMA SDK Docs](https://developers.google.com/interactive-media-ads/docs/sdks/ios/client-side/picture_in_picture?hl=en#starting_ads)). If you are using custom controls, you must hide your PIP button when you receive the ```STARTED``` event from ```onReceiveAdEvent``` and show it again when you receive the ```ALL_ADS_COMPLETED``` event.
|
||||
|
||||
### Events
|
||||
To receive events from IMA SDK, you need to pass `onReceiveAdEvent` prop to `Video` component. List of events, you can find [here](https://github.com/react-native-video/react-native-video/blob/master/src/types/Ads.ts)
|
||||
To receive events from IMA SDK, you need to pass `onReceiveAdEvent` prop to `Video` component. List of events, you can find [here](https://github.com/TheWidlarzGroup/react-native-video/blob/master/src/types/Ads.ts)
|
||||
|
||||
Example:
|
||||
|
||||
|
@@ -20,12 +20,12 @@ The aim of this package is to have a thin and exhaustive control of player.
|
||||
|
||||
## V6.0.0 Information
|
||||
> ⚠️ **Version 6**: The following documentation refer to features only available through the v6.0.0 releases.
|
||||
> As major rework has been done in case of doubt, you can still use [version 5.2.x, see documentation](https://github.com/react-native-video/react-native-video/blob/v5.2.0/README.md)
|
||||
> As major rework has been done in case of doubt, you can still use [version 5.2.x, see documentation](https://github.com/TheWidlarzGroup/react-native-video/blob/v5.2.0/README.md)
|
||||
|
||||
Version 6.x requires **react-native >= 0.68.2**
|
||||
> ⚠️ from **6.0.0-beta.8** requires also **iOS >= 13.0** (default in react-native 0.73)
|
||||
|
||||
For older versions of react-native, [please use version 5.x](https://github.com/react-native-video/react-native-video/tree/v5.2.0).
|
||||
For older versions of react-native, [please use version 5.x](https://github.com/TheWidlarzGroup/react-native-video/tree/v5.2.0).
|
||||
|
||||
## Usage
|
||||
|
||||
|
@@ -26,7 +26,7 @@ Run `pod install` in the `ios` directory of your project.
|
||||
|
||||
### Enable custom feature in podfile file
|
||||
|
||||
Samples available in sample app see [sample pod file](https://github.com/react-native-video/react-native-video/blob/9c669a2d8a53df36773fd82ff0917280d0659bc7/examples/basic/ios/Podfile#L34)
|
||||
Samples available in sample app see [sample pod file](https://github.com/TheWidlarzGroup/react-native-video/blob/9c669a2d8a53df36773fd82ff0917280d0659bc7/examples/basic/ios/Podfile#L34)
|
||||
|
||||
#### Video caching
|
||||
|
||||
@@ -92,7 +92,7 @@ buildscript {
|
||||
}
|
||||
```
|
||||
|
||||
See [sample app](https://github.com/react-native-video/react-native-video/blob/9c669a2d8a53df36773fd82ff0917280d0659bc7/examples/basic/android/build.gradle#L14C5-L14C5)
|
||||
See [sample app](https://github.com/TheWidlarzGroup/react-native-videoo/blob/9c669a2d8a53df36773fd82ff0917280d0659bc7/examples/basic/android/build.gradle#L14C5-L14C5)
|
||||
|
||||
</details>
|
||||
<details>
|
||||
|
@@ -7,7 +7,7 @@ This repository contains multiple a sample implementation in example folder.
|
||||
It is always preferable to test behavior on a sample app than in a full app implementation.
|
||||
The basic sample allow to test a lot of feature.
|
||||
To use the sample you will need to do steps:
|
||||
- Clone this repository: ``` git clone git@github.com:react-native-video/react-native-video.git```
|
||||
- Clone this repository: ``` git clone git@github.com:TheWidlarzGroup/react-native-video.git```
|
||||
- Go to root folder and build it. It will generate a transpiled version of the package in lib folder: ```cd react-native-video && yarn && yarn build```
|
||||
- Go to the sample and install it: ```cd example/basic && yarn install```
|
||||
- Build it ! for android ```yarn android``` for ios ```cd ios && pod install && cd .. && yarn ios```
|
||||
|
@@ -41,10 +41,10 @@ export default {
|
||||
),
|
||||
faviconGlyph: '🎬',
|
||||
project: {
|
||||
link: 'https://github.com/react-native-video/react-native-video',
|
||||
link: 'https://github.com/TheWidlarzGroup/react-native-video',
|
||||
},
|
||||
docsRepositoryBase:
|
||||
'https://github.com/react-native-video/react-native-video/tree/master/docs/',
|
||||
'https://github.com/TheWidlarzGroup/react-native-video/tree/master/docs/',
|
||||
footer: {
|
||||
text: (
|
||||
<span>
|
||||
|
Reference in New Issue
Block a user