Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed an issue on Android where the build process would pick up version from the snapshot repository instead of the release repository, causing build failures.
- Fixed an issue on iOS & Android where, when using `<StrictMode>`, the player's list of text tracks would be empty.

### Changed

- Upgraded example app to React-Native v0.84.1.

## [10.11.0] - 26-03-10

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions e2e/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ react {

/* Variants */
// The list of variants to that are debuggable. For those we're going to
// skip the bundling of the JS bundle and the assets. By default is just 'debug'.
// skip the bundling of the JS bundle and the assets. Default is "debug", "debugOptimized".
// If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
// debuggableVariants = ["liteDebug", "prodDebug"]
// debuggableVariants = ["liteDebug", "liteDebugOptimized", "prodDebug", "prodDebugOptimized"]

/* Bundling */
// A list containing the node command and its flags. Default is just 'node'.
Expand Down
476 changes: 233 additions & 243 deletions e2e/package-lock.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"update-dependencies": "npx ncu '/@theoplayer\\/.*/' -u"
},
"dependencies": {
"@theoplayer/react-native-ui": "^0.21.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "npm:react-native-tvos@^0.83.1-0",
"@theoplayer/react-native-ui": "^0.22.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "npm:react-native-tvos@^0.84.1-0",
"react-native-device-info": "^14.1.1",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "^15.12.1",
Expand All @@ -29,16 +29,16 @@
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/runtime": "^7.26.10",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.83.1",
"@react-native/eslint-config": "0.83.1",
"@react-native/metro-config": "0.83.1",
"@react-native/typescript-config": "0.83.1",
"@react-native-community/cli": "20.1.0",
"@react-native-community/cli-platform-android": "20.1.0",
"@react-native-community/cli-platform-ios": "20.1.0",
"@react-native/babel-preset": "0.84.1",
"@react-native/eslint-config": "0.84.1",
"@react-native/metro-config": "0.84.1",
"@react-native/typescript-config": "0.84.1",
"@types/cavy": "^3.2.9",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.1.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-loader": "^8.4.1",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-react-native-web": "^0.17.7",
Expand All @@ -61,6 +61,6 @@
}
},
"engines": {
"node": ">=20"
"node": ">= 22.11.0"
}
}
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ react {

/* Variants */
// The list of variants to that are debuggable. For those we're going to
// skip the bundling of the JS bundle and the assets. By default is just 'debug'.
// skip the bundling of the JS bundle and the assets. Default is "debug", "debugOptimized".
// If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
// debuggableVariants = ["liteDebug", "prodDebug"]
// debuggableVariants = ["liteDebug", "liteDebugOptimized", "prodDebug", "prodDebugOptimized"]

/* Bundling */
// A list containing the node command and its flags. Default is just 'node'.
Expand Down
Loading
Loading