-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
47 lines (41 loc) · 947 Bytes
/
app.json
File metadata and controls
47 lines (41 loc) · 947 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
37
38
39
40
41
42
43
44
45
46
47
{
"expo": {
"name": "Delivery App",
"slug": "delivery-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./app/assets/images/icon.png",
"scheme": "deliveryapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./app/assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#121212"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.himalayas.deliveryapp",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"package": "com.parker_2107.deliveryapp",
"adaptiveIcon": {
"foregroundImage": "./app/assets/images/adaptive-icon.png",
"backgroundColor": "#121212"
},
"edgeToEdgeEnabled": true
},
"web": {
"favicon": "./app/assets/images/icon.png"
},
"plugins": ["expo-web-browser"],
"extra": {
"eas": {
"projectId": "e4f0078d-0986-40ed-82c4-29aed7cdc09f"
}
}
}
}