-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
38 lines (38 loc) · 1 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
{
"expo": {
"scheme": "acme",
"web": {
"bundler": "metro"
},
"plugins": [
"expo-router",
[
"expo-location",
{
"locationWhenInUsePermission": "$(PRODUCT_NAME) needs your location to calculate the compass angle and distance to the nearest Taco Bell."
}
],
[
"expo-screen-orientation",
{
"initialOrientation": "PORTRAIT_UP"
}
]
],
"name": "TacoCompass",
"slug": "taco-compass",
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "f6cecff2-9ebf-4ef0-b278-94f2b64f3bcc"
}
},
"ios": {
"bundleIdentifier": "com.nickwallick.tacocompass",
"icon": "./icons/AppIcon.png"
},
"userInterfaceStyle": "dark"
}
}