-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
36 lines (36 loc) · 829 Bytes
/
app.json
File metadata and controls
36 lines (36 loc) · 829 Bytes
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
{
"expo": {
"name": "Radar",
"slug": "radar",
"sdkVersion": "27.0.0",
"privacy": "public",
"icon": "./assets/icons/logo.png",
"version": "0.0.1",
"ios": {
"bundleIdentifier": "br.org.foradoeixo.radar.react"
},
"android": {
"package": "br.org.foradoeixo.radar.react",
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"CAMERA",
"MANAGE_DOCUMENTS",
"READ_EXTERNAL_STORAGE",
"READ_INTERNAL_STORAGE"
]
},
"updates": {
"fallbackToCacheTimeout": 0
},
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#672f79"
},
"splash": {
"image": "./assets/imgs/splash.png",
"backgroundColor": "#9c5ed1",
"resizeMode": "cover"
}
}
}