-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 1.12 KB
/
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
39
40
41
{
"expo": {
"name": "MoodiNest",
"slug": "moodinest",
"scheme": "moodinest",
"icon": "./assets/icons/logo.png",
"version": "1.0.0",
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/icons/logo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icons/logo.png",
"backgroundColor": "#ffffff"
},
"package": "com.itmo.moodinest"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/icons/logo.png"
},
"plugins": ["expo-router", "expo-asset", "expo-font"],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "5abf1931-db7f-4fd1-92d0-8fd4480e27ca"
}
},
"owner": "moodinest"
}
}