-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
38 lines (38 loc) · 990 Bytes
/
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
{
"expo": {
"name": "ChainReactApp2022",
"slug": "ChainReactApp2022",
"owner": "infinitered",
"version": "2022.0.1",
"orientation": "portrait",
"backgroundColor": "#171539",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#171539"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"android": {
"icon": "./assets/images/icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.chainreactapp"
},
"ios": {
"supportsTablet": true,
"icon": "./assets/images/icon-ios.png",
"splash": {
"tabletImage": "./assets/images/splash-tablet-portrait.png"
},
"bundleIdentifier": "infinitered.stage.ChainReactConf"
},
"web": {
"favicon": "./assets/images/favicon.png"
}
}
}