Files
OrionTV/app.json
2025-08-15 15:58:59 +08:00

97 lines
2.5 KiB
JSON

{
"expo": {
"plugins": [
[
"@react-native-tvos/config-tv",
{
"androidTVBanner": "./assets/tv_icons/icon-400x240.png",
"appleTVImages": {
"icon": "./assets/tv_icons/icon-1280x768.png",
"iconSmall": "./assets/tv_icons/icon-400x240.png",
"iconSmall2x": "./assets/tv_icons/icon-800x480.png",
"topShelf": "./assets/tv_icons/icon-1920x720.png",
"topShelf2x": "./assets/tv_icons/icon-3840x1440.png",
"topShelfWide": "./assets/tv_icons/icon-2320x720.png",
"topShelfWide2x": "./assets/tv_icons/icon-4640x1440.png"
}
}
],
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": false
},
"android": {
"newArchEnabled": false,
"enableProguardInReleaseBuilds": true,
"enableShrinkResourcesInReleaseBuilds": true
}
}
],
"expo-router"
],
"experiments": {
"typedRoutes": true
},
"name": "OrionTV",
"slug": "OrionTV",
"orientation": "default",
"icon": "./assets/images/icon.png",
"userInterfaceStyle": "dark",
"assetBundlePatterns": [
"**/*"
],
"android": {
"package": "com.oriontv",
"usesCleartextTraffic": true,
"hardwareAcceleration": true,
"networkSecurityConfig": "@xml/network_security_config",
"icon": "./assets/images/icon.png",
"permissions": [
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.WAKE_LOCK"
],
"screenOrientation": "unspecified",
"intentFilters": [
{
"action": "VIEW",
"data": [
{
"scheme": "oriontv"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"ios": {
"bundleIdentifier": "com.oriontv",
"supportsTablet": true,
"requireFullScreen": false,
"supportedInterfaceOrientations": [
"UIInterfaceOrientationPortrait",
"UIInterfaceOrientationLandscapeLeft",
"UIInterfaceOrientationLandscapeRight",
"UIInterfaceOrientationPortraitUpsideDown"
],
"config": {
"usesNonExemptEncryption": false
}
},
"scheme": "oriontv",
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "b4eddfdb-08cb-4ffc-828d-a27f493e10f7"
}
}
}
}