-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
36 lines (36 loc) · 845 Bytes
/
app.json
File metadata and controls
36 lines (36 loc) · 845 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": "Weather",
"slug": "weather",
"version": "1.2.3",
"orientation": "portrait",
"scheme": "weather",
"newArchEnabled": true,
"icon": "./assets/images/icon.png",
"android": {
"backgroundColor": "#000000",
"package": "com.vandam.weather",
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.INTERNET",
"android.permission.VIBRATE"
]
},
"plugins": [
"expo-router",
"expo-font",
"./plugins/withAndroidConfigChanges",
"./plugins/withAndroidTheme"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "ffe019a0-ca30-4041-a53f-cb71d0f5c1a4"
}
}
}
}