forked from spicygreenbook/greenbook-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
36 lines (36 loc) · 816 Bytes
/
app.json
File metadata and controls
36 lines (36 loc) · 816 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": "Spicy Green Book",
"slug": "spicygreenbook",
"version": "0.2.5",
"icon": "./public/icon.png",
"splash": {
"orientation": "portrait",
"image": "./public/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.spicygreenbook.app"
},
"android": {
"package": "com.spicygreenbook.app",
"versionCode": 2,
"permissions": [
"ACCESS_FINE_LOCATION"
]
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"web": {
"favicon": "./public/apple-touch-icon.png"
},
"description": "",
"githubUrl": "https://github.com/spicygreenbook/greenbook-app"
}
}