-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
72 lines (72 loc) · 1.93 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
{
"expo": {
"name": "Metropolis",
"slug": "metropolis",
"owner": "metropolis",
"privacy": "hidden",
"version": "1.1.2",
"githubUrl": "https://github.com/wlmac/mobile",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "metropolis",
"userInterfaceStyle": "automatic",
"notification": {
"color": "#073763",
"iosDisplayInForeground": true,
"icon": "./assets/images/icon.png"
},
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#1c233f"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.maclyonsden.metropolis",
"buildNumber": "7",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "This app accesses location information to display location in respect to the school",
"UISupportedInterfaceOrientations": [
"UIInterfaceOrientationPortrait"
],
"UISupportedInterfaceOrientations~ipad": [
"UIInterfaceOrientationLandscapeRight",
"UIInterfaceOrientationLandscapeLeft",
"UIDeviceOrientationPortrait",
"UIDeviceOrientationPortraitUpsideDown"
]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION"
],
"package": "com.maclyonsden.metropolis",
"config": {
"googleMaps": {
"apiKey": "AIzaSyChYW9ehN4kMWIMP6S9VQgzq-91Ryb6BAQ"
}
},
"versionCode": 9
},
"web": {
"favicon": "./assets/images/favicon.png"
},
"extra": {
"eas": {
"projectId": "7cece997-cdba-4ad5-917e-7ef47015ac99"
}
}
}
}