-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into feature/implement…
…-codegen-types
- Loading branch information
Showing
6 changed files
with
51 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"caching": "Caching", | ||
"misc": "Misc", | ||
"debug": "Debugging" | ||
"debug": "Debugging", | ||
"new-arch": "New Architecture" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# New Architecture | ||
|
||
## Fabric | ||
Library currently does not support Fabric. We are working on it. In the meantime, you can use Interop Layer. | ||
|
||
## Interop Layer | ||
You can use this library on New Architecture by using Interop Layer. <br/> To use Interop Layer you need to have `react-native` >= `0.72.0` & `react-native-video` >= `6.0.0-beta.5`. | ||
|
||
For `react-native` < `0.74` you need to add config in `react-native.config.js` file. | ||
|
||
```javascript | ||
module.exports = { | ||
project: { | ||
android: { | ||
unstable_reactLegacyComponentNames: ['Video'], | ||
}, | ||
ios: { | ||
unstable_reactLegacyComponentNames: ['Video'], | ||
}, | ||
}, | ||
}; | ||
``` | ||
|
||
## Bridgeless Mode | ||
Library currently does not support Bridgeless Mode. We are working on it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters