@react-native-tvos/config-tv
v0.0.13
Published
Config plugin to reconfigure native directories for Apple TV and Android TV development if needed
Downloads
6,271
Readme
@react-native-tvos/config-tv
Expo Config Plugin to auto-configure the native directories for TV development using the React Native TV fork. The TV fork supports development for both phone (Android and iOS) and TV (Android TV and Apple TV), so the plugin can be used in a project that targets both phone and TV devices.
Notes:
- This package cannot be used in the "Expo Go" app because Expo Go does not support TV.
- Apple TV development will work with many of the commonly used SDK 50 packages, including
expo-updates
, but many Expo packages do not work on Apple TV and are not supported. In particular,expo-dev-client
andexpo-router
are not supported.
Expo installation
- First install the package with yarn, npm, or
npx expo install
.
npx expo install @react-native-tvos/config-tv
After installing this npm package, add the config plugin to the plugins
array of your app.json
or app.config.js
:
{
"expo": {
"plugins": ["@react-native-tvos/config-tv"]
}
}
or
{
"expo": {
"plugins": [
[
"@react-native-tvos/config-tv",
{
"isTV": true,
"showVerboseWarnings": false,
"tvosDeploymentTarget": "13.4",
"removeFlipperOnAndroid": true,
"androidTVBanner": "assets/images/tv_banner.png",
"androidTVIcon": "assets/images/tv_icon.png",
"appleTVImages": {
"icon": "./assets/images/myimage-tvos-1280x768.png",
"iconSmall": "./assets/images/myimage-tvos-400x240.png",
"iconSmall2x": "./assets/images/myimage-tvos-800x480.png",
"topShelf": "./assets/images/myimage-tvos-1920x720.png",
"topShelf2x": "./assets/images/myimage-tvos-3840x1440.png",
"topShelfWide": "./assets/images/myimage-tvos-2320x720.png",
"topShelfWide2x": "./assets/images/myimage-tvos-4640x1440.png"
}
}
]
]
}
}
Usage
Plugin parameters:
isTV
: (optional boolean, default false) If true, prebuild should generate or modify Android and iOS files to build for TV (Android TV and Apple TV). If false, the plugin will have no effect. Setting the environment variable EXPO_TV to "true" or "1" will override this value and force a TV build.showVerboseWarnings
: Deprecated. Verbose logging is now shown as in other config plugins, by setting an environment variable:EXPO_DEBUG=1
(shows debug messages from all plugins)DEBUG=expo:*
(shows debug messages from all plugins)DEBUG=expo:react-native-tvos:config-tv
(shows debug messages from this plugin only)
tvosDeploymentTarget
: (optional string, default '13.4') Used to set the tvOS deployment target version in the Xcode project.removeFlipperOnAndroid
: (optional boolean, default false) Used to remove the Flipper dependency fromMainApplication.kt
(orMainApplication.java
) andandroid/app/build.gradle
. This may be necessary for React Native TV 0.73 and higher, since Flipper integration is removed from these versions. If this causes issues, set the value to false, runnpx expo prebuild --clean
again, and then remove Flipper from your Android source manually. If enabled, this change will be made regardless of the setting of theEXPO_TV
environment variable or the value of theisTV
plugin parameter.androidTVRequired
: (optional boolean, default false) If set, the Android manifest will be configured for Android TV only (no Android mobile support). Specifically, the "uses-feature" tag for "android.software.leanback" will be set to "required=true".androidTVBanner
: (optional string) If set, this should be a path to an existing PNG file appropriate for an Android TV banner image. See https://developer.android.com/design/ui/tv/guides/system/tv-app-icon-guidelines#banner . The Android manifest will be modified to reference this image, and the image will be copied into Android resource drawable directories.androidTVIcon
: (optional string) If set, this should be a path to an existing PNG file appropriate for an Android TV icon image. See https://developer.android.com/design/ui/tv/guides/system/tv-app-icon-guidelines#launcher-icon . The Android manifest will be modified to reference this image, and the image will be copied into Android resource drawable and mipmap directories.appleTVImages
: (optional object) If set, this is an object with the paths to images needed to construct the Apple TV icon and top shelf brand assets. The images will be used to construct a brand asset catalog in the Xcode project Image catalog, and the project updated to use the brand assets as the source for the app icons. If this property is set, all image paths must be defined and the files must exist, or an error will be thrown. The images need to be the exact sizes shown here, in order to avoid errors during Xcode compilation and on submission to the App Store or TestFlight.icon
: (string) Path to a 1280x760 imageiconSmall
: (string) Path to a 400x240 imageiconSmall2x
: (string) Path to a 800x480 imagetopShelf
: (string) Path to a 1920x720 imagetopShelf2x
: (string) Path to a 3840x1440 imagetopShelfWide
: (string) Path to a 2320x720 imagetopShelfWide2x
: (string) Path to a 4640x1440 image
Warning:
When this plugin is used to generate files in the iOS directory that build an Apple TV or Android TV app, your React Native dependency in package.json
MUST be set to the React Native TV fork, as shown in the example below:
{
"dependencies": {
"react-native": "npm:react-native-tvos@^0.73.6-0"
}
}
If this is not the case, the plugin will run successfully, but Cocoapods installation will fail, since React Native core repo does not support Apple TV. Android TV build will succeed, but will not contain native changes needed to correctly navigate the screen using a TV remote, and may have other problems.
Warning:
If you have already generated native directories for a phone build, and set EXPO_TV
to "true" or "1" (or set the isTV
plugin parameter to true), then running npx expo prebuild
again will lead to errors when Cocoapods installation is run again. Similar problems will occur if EXPO_TV
is set to "0" (or isTV
set to false) after generating native directories for a TV build.
To avoid this issue, it is strongly recommended to run npx expo prebuild --clean
if changing the EXPO_TV
environment variable or the isTV
plugin parameter. See this doc for more details.