-
Notifications
You must be signed in to change notification settings - Fork 18
/
app.json
65 lines (64 loc) · 1.7 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
{
"expo": {
"name": "Green Up",
"description": "The Official App for Vermont's Green Up Day",
"slug": "Green-Up-Vermont",
"privacy": "public",
"sdkVersion": "34.0.0",
"platforms": [
"ios",
"android"
],
"owner": "c4btv",
"githubUrl": "https://github.com/codeforbtv/green-up-app",
"version": "3.0.1",
"orientation": "portrait",
"icon": "./assets/images/green-up-icon-1024-NO-ALPHA.png",
"splash": {
"image": "./assets/images/loading.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "org.greenupvermont.app",
"config": {
"googleSignIn": {
"reservedClientId": "com.googleusercontent.apps.439621369113-n8qpls93d89p46dg8rlbkt09k3dnk44s"
}
},
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "We use your location to mark where you leave your trash bags"
}
},
"android": {
"package": "org.greenupvermont.app",
"versionCode": 3,
"permissions": [
"READ_CONTACTS",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"ACCESS_NETWORK_STATE"
],
"config": {
"googleSignIn": {
"apiKey": "AIzaSyBv0LTM1nQ00jjSTV0F16mFKAHPW-BmmiU",
"certificateHash": "A8241216BF89A3AD919A760FC12E2517C6BB362F"
},
"googleMaps": {
"apiKey": "AIzaSyBv0LTM1nQ00jjSTV0F16mFKAHPW-BmmiU"
}
}
},
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#EEEEEE"
}
}
}