forked from Duell10111/ReactTube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
75 lines (75 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"expo": {
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/android/ic_launcher_foreground.png",
"backgroundImage": "./assets/images/android/ic_launcher_background.png",
"monochromeImage": "./assets/images/android/ic_launcher_monochrome.png"
},
"package": "com.duell10111.reacttube"
},
"ios": {
"icon": "./assets/images/ios_icon.png",
"bundleIdentifier": "com.duell10111.reacttube",
"supportsTablet": true,
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"UIBackgroundModes": [
"audio"
]
}
},
"plugins": [
[
"@react-native-tvos/config-tv",
{
"isTV": true,
"showVerboseWarnings": false,
"tvosDeploymentTarget": "15.1",
"removeFlipperOnAndroid": false,
"androidTVBanner": "./assets/images/tv/tv_banner.png",
"androidTVIcon": "assets/images/tv/app_store_icon.png",
"appleTVImages": {
"icon": "./assets/images/tv/app_store_icon.png",
"iconSmall": "./assets/images/tv/app_store_icon_400.png",
"iconSmall2x": "./assets/images/tv/app_store_icon_800.png",
"topShelf": "./assets/images/tv/app_store_icon_topshelf_1x.png",
"topShelf2x": "./assets/images/tv/app_store_icon_topshelf_2x.png",
"topShelfWide": "./assets/images/tv/app_store_icon_topshelf_wide1x.png",
"topShelfWide2x": "./assets/images/tv/app_store_icon_topshelf_wide2x.png"
}
}
],
[
"expo-build-properties"
],
[
"@duell10111/apple-targets",
{
"appleTeamId": "XXXXXXXXXX",
"isTV": true
}
],
[
"expo-splash-screen",
{
"backgroundColor": "#000000",
"image": "./assets/images/ios_icon.png",
"imageWidth": 200
}
],
"expo-sqlite"
],
"name": "reacttube",
"slug": "reacttube",
"userInterfaceStyle": "dark",
"primaryColor": "#556BFD",
"backgroundColor": "#000000",
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#000000"
}
}
}