-
Notifications
You must be signed in to change notification settings - Fork 18
/
app.json
61 lines (61 loc) Β· 1.68 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"expo": {
"plugins": [
"@bam.tech/react-native-keyevent-expo-config-plugin",
[
"@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-1920x720.png",
"topShelfWide": "./assets/tv_icons/icon-1920x720.png",
"topShelfWide2x": "./assets/tv_icons/icon-1920x720.png"
}
}
],
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": false
},
"android": {
"newArchEnabled": false
}
}
],
"expo-router",
[
"react-native-video",
{
"enableNotificationControls": false,
"enableBackgroundAudio": false,
"enableADSExtension": false,
"enableCacheExtension": false,
"androidExtensions": {
"useExoplayerRtsp": false,
"useExoplayerSmoothStreaming": true,
"useExoplayerHls": false,
"useExoplayerDash": false
}
}
]
],
"experiments": {
"typedRoutes": true
},
"name": "MultiTVSample",
"slug": "MultiTVSample",
"scheme": "com.anonymous.MultiTVSample",
"android": {
"package": "com.anonymous.MultiTVSample"
},
"ios": {
"bundleIdentifier": "com.anonymous.MultiTVSample"
}
}
}