-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
91 lines (91 loc) · 2.59 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
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
{
"expo": {
"name": "Maroon Rides",
"slug": "Maroon Rides",
"version": "1.6.3",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"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": [
"@config-plugins/detox",
["@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"
}
]
]
}
}