-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
executable file
·86 lines (86 loc) · 2.42 KB
/
app.json
File metadata and controls
executable file
·86 lines (86 loc) · 2.42 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"expo": {
"name": "Campus Guide",
"slug": "Campus-Guide",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "campusguide",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/campus_guide_logo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/campus_guide_logo.png",
"backgroundColor": "#ffffff"
},
"package": "com.anonymous.CampusGuidemobile",
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.ACCESS_BACKGROUND_LOCATION",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_LOCATION"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/campus_guide_logo.png"
},
"plugins": [
"expo-router",
[
"@rnmapbox/maps",
{
"RNMapboxMapsImpl": "mapbox",
"RNMapboxMapsDownloadToken": "sk.eyJ1Ijoidmlja3lzdGlja3oiLCJhIjoiY20wYmIzZDllMDY4bjJqczhoY3ljczNzZiJ9.nEbaMS1GW0B1gmgxfNcTMA"
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow Campus Guide to use your location.",
"isIosBackgroundLocationEnabled": true,
"isAndroidBackgroundLocationEnabled": true,
"locationWhenInUsePermission": "Allow Campus Guide to use your location.",
"locationAlwaysPermission": "Allow Campus Guide to use your location."
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"build": {
"experimental": {
"ios": {
"appExtensions": [
{
"targetName": "ShareExtension",
"bundleIdentifier": "undefined.share-extension",
"entitlements": {
"com.apple.security.application-groups": [
"group.undefined"
]
}
}
]
}
}
},
"projectId": "72e4c9ce-f3e1-47e6-bad7-4e3c43ea5bb5"
}
}
}
}