-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
78 lines (78 loc) · 1.95 KB
/
Copy pathapp.json
File metadata and controls
78 lines (78 loc) · 1.95 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
{
"expo": {
"name": "BusBuzzin",
"slug": "BusBuzzin",
"version": "1.3.0",
"orientation": "portrait",
"icon": "./src/assets/logo.png",
"userInterfaceStyle": "light",
"notification": {
"icon": "./src/assets/bus_alert_notification_icon.png"
},
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSAppTransportSecurity": {
"NSExceptionDomains": {
"http://datamall2.mytransport.sg": {
"NSIncludesSubdomains": true,
"NSTemporaryExceptionAllowsInsecureHTTPLoads": true,
"NSTemporaryExceptionMinimumTLSVersion": "TLSv1.1"
}
}
}
},
"config": {
"googleMapsApiKey": "AIzaSyD5gIizY0MRHltCUcPsPChKWyO7gAjKsG8"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/logo.png",
"backgroundColor": "#9ef4ff"
},
"package": "com.keeejinnn.BusBuzzin",
"softwareKeyboardLayoutMode": "pan",
"config": {
"googleMaps": {
"apiKey": "AIzaSyD5gIizY0MRHltCUcPsPChKWyO7gAjKsG8"
}
},
"permissions": [
"android.permission.SCHEDULE_EXACT_ALARM"
]
},
"web": {
"favicon": "./src/assets/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location.",
"isAndroidForegroundServiceEnabled": true,
"isAndroidBackgroundLocationEnabled": true
}
]
],
"extra": {
"eas": {
"projectId": "59cae476-7ecf-4088-af42-dfd79343a9d8"
}
}
}
}