-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
117 lines (117 loc) · 3.03 KB
/
app.json
File metadata and controls
117 lines (117 loc) · 3.03 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"expo": {
"name": "Maroon Rides",
"slug": "Maroon_Rides",
"version": "1.9.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": false,
"scheme": "myapp",
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.bwees.reveille-rides",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#fbffff",
"dark": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#191919"
}
},
"privacyManifests": {
"NSPrivacyAccessedAPITypes": [
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategorySystemBootTime",
"NSPrivacyAccessedAPITypeReasons": [
"35F9.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryDiskSpace",
"NSPrivacyAccessedAPITypeReasons": [
"85F4.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryFileTimestamp",
"NSPrivacyAccessedAPITypeReasons": [
"DDA9.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryUserDefaults",
"NSPrivacyAccessedAPITypeReasons": [
"CA92.1"
]
}
]
},
"entitlements": {
"aps-environment": "development"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"config": {
"googleMaps": {
"apiKey": "{{GOOGLE_MAPS_KEY}}"
}
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#fbffff",
"dark": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#191919"
}
},
"package": "com.maroonrides.maroonrides"
},
"web": {
"favicon": "./assets/favicon.png",
"bundler": "metro"
},
"plugins": [
[
"@bacons/apple-targets",
{
"appleTeamId": "65AMD2STXG"
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow location for map display and route planning",
"locationAlwaysPermission": "Allow location for map display and route planning",
"locationWhenInUsePermission": "Allow location for map display and route planning"
}
],
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 35,
"targetSdkVersion": 35,
"buildToolsVersion": "35.0.0"
},
"ios": {
"deploymentTarget": "15.1"
}
}
],
"expo-font",
"expo-router"
]
}
}