This repository was archived by the owner on May 30, 2025. It is now read-only.
forked from codeforbtv/green-up-app-old
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.config.json
More file actions
91 lines (91 loc) · 2.05 KB
/
app.config.json
File metadata and controls
91 lines (91 loc) · 2.05 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
{
"expo": {
"name": "Green Up",
"description": "The Official App for Vermont's Green Up Day",
"slug": "Green-Up-Vermont",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"owner": "c4btv",
"githubUrl": "https://github.com/codeforbtv/green-up-app",
"orientation": "portrait",
"icon": "./assets/images/green-up-icon-1024-NO-ALPHA.png",
"splash": {
"image": "./assets/images/loading-poster.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"url": "<env>",
"enabled": true,
"checkAutomatically": "ON_LOAD"
},
"assetBundlePatterns": [
"**/*"
],
"plugins": [
"sentry-expo"
],
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "code-for-btv-2",
"project": "green-up-mobile"
}
}
]
},
"extra": {
"eas": {
"projectId": "<env>"
},
"sentry": {
"dsn": "<env>"
}
},
"version": "2024.0.4",
"runtimeVersion": {
"policy": "appVersion"
},
"ios": {
"buildNumber": "2024.0.4",
"supportsTablet": false,
"bundleIdentifier": "org.greenupvermont.app",
"config": {
"googleMapsApiKey": "<env>"
},
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "We use your location to mark where you leave your trash bags"
}
},
"android": {
"package": "org.greenupvermont.app",
"versionCode": 202404,
"adaptiveIcon": {
"backgroundColor": "#FFFFFF"
},
"permissions": [
"READ_CONTACTS",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"ACCESS_NETWORK_STATE"
],
"config": {
"googleMaps": {
"apiKey": "<env>"
}
}
},
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#EEEEEE"
},
"experiments": {
"tsconfigPaths": true
}
}
}