-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
76 lines (76 loc) · 1.88 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
{
"expo": {
"name": "Healthy Corners",
"slug": "healthy-corners",
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"version": "1.5.0",
"primaryColor": "#008550",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/hc_splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"scheme": "healthycorners",
"updates": {
"fallbackToCacheTimeout": 3000
},
"assetBundlePatterns": [
"assets/images/*"
],
"ios": {
"bundleIdentifier": "org.calblueprint.HealthyCornersRewards",
"googleServicesFile": "./GoogleService-Info.plist",
"buildNumber": "1.5.0",
"supportsTablet": true,
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "To find nearby stores and see what products are available.",
"LSApplicationQueriesSchemes": [
"comgooglemaps",
"citymapper",
"uber",
"lyft",
"waze"
]
},
"config": {
"googleMapsApiKey": "AIzaSyAt2wwpTvYIBhVpgkFZ3fa7dY3Kw2cc5uU",
"branch": {
"apiKey": "key_live_ikGZzufqsAKf84CYNZ1fGpkcBtlLsdc7"
}
}
},
"android": {
"package": "org.calblueprint.HealthyCornersRewards",
"googleServicesFile": "./google-services.json",
"config": {
"googleMaps": {
"apiKey": "AIzaSyD_-M-Tjp0-QN2exYtlNZk3eMBnQPPkxWk"
},
"branch": {
"apiKey": "key_live_ikGZzufqsAKf84CYNZ1fGpkcBtlLsdc7"
}
},
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"VIBRATE"
],
"versionCode": 8
},
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps"
}
]
},
"description": ""
}
}