@config-plugins/tv
Version:
Config plugin to reconfigure native directories for TV development if needed
14 lines (13 loc) • 458 B
TypeScript
export type ConfigData = {
/**
* If true, prebuild should generate Android and iOS files for TV (Android TV and Apple TV).
* If false, the default phone-appropriate files should be generated.
* Setting the environment variable EXPO_TV to "true" or "1" will override
* this value.
*/
isTV?: boolean;
/**
* If true, verbose warnings will be shown during plugin execution.
*/
showVerboseWarnings?: boolean;
};