0.0.9 • Published 18 days ago

@react-native-tvos/config-tv v0.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
18 days ago

@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 and expo-router are not supported.

Expo installation

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",
          "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 true) Used to remove the Flipper dependency from MainApplication.kt (or MainApplication.java) and android/app/build.gradle. This is 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, run npx expo prebuild --clean again, and then remove Flipper from your Android source manually. This change will be made regardless of the setting of the EXPO_TV environment variable or the value of the isTV plugin parameter, as it is needed for both Android mobile and Android TV.
  • 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.
  • 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 image
    • iconSmall: (string) Path to a 400x240 image
    • iconSmall2x: (string) Path to a 800x480 image
    • topShelf: (string) Path to a 1920x720 image
    • topShelf2x: (string) Path to a 3840x1440 image
    • topShelfWide: (string) Path to a 2320x720 image
    • topShelfWide2x: (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.

0.0.9

18 days ago

0.0.8

1 month ago

0.0.7

2 months ago

0.0.6

2 months ago

0.0.5

3 months ago

0.0.4

5 months ago

0.0.3

5 months ago

0.0.2

6 months ago

0.0.1

7 months ago