-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
47 lines (47 loc) · 1.1 KB
/
app.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"expo": {
"name": "FieldBook",
"slug": "FieldBook",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "fieldbook",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"assetBundlePatterns": [
"assets/images/icon.png",
"assets/images/adaptive-icon.png",
"assets/images/favicon.png",
"assets/images/splash-icon.png"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.chowdhurysudip.fieldbook"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"package": "com.chowdhurysudip.fieldbook"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "c4f4dac3-b4fd-4cf9-a35b-2dd2b5d61c90"
}
}
}
}