-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
66 lines (66 loc) · 1.74 KB
/
app.json
File metadata and controls
66 lines (66 loc) · 1.74 KB
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
62
63
64
65
66
{
"expo": {
"name": "M3U TV",
"slug": "m3u-tv",
"scheme": "dev.sparkison.tv",
"version": "0.0.1",
"orientation": "landscape",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"android": {
"package": "dev.sparkison.tv",
"isTV": true,
"edgeToEdgeEnabled": true,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#000000"
}
},
"ios": {
"bundleIdentifier": "dev.sparkison.tv",
"supportsTablet": true,
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
}
}
},
"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",
{
"android": {
"minSdkVersion": 26,
"usesCleartextTraffic": true
}
}
],
"expo-secure-store",
"./plugins/withAndroidSigning"
],
"web": {
"favicon": "./favicon.png"
}
}
}