-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 1.59 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
{
"expo": {
"name": "Shoo-in Dev",
"description": "Collect stamps around the world using shoo-in!",
"slug": "shoo-in-dev",
"privacy": "public",
"sdkVersion": "28.0.0",
"platforms": ["ios", "android"],
"version": "1.1.0",
"orientation": "portrait",
"primaryColor": "#A61414",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.shoo-in.stamp-rally-dev",
"buildNumber": "1.0.0",
"infoPlist": {
"NSLocationWhenInUseUsageDescription":
"This app uses your location to determine if you are close enough to collect a stamp."
},
"config": {
"googleSignIn": {
"reservedClientId":
"com.googleusercontent.apps.309418440628-ugqaajesnefhkjt4h6e5o308144jecgc"
}
}
},
"android": {
"package": "com.shooin.stamprally",
"versionCode": 2,
"permissions": ["ACCESS_COARSE_LOCATION", "ACCESS_FINE_LOCATION"],
"config": {
"googleSignIn": {
"apiKey": "AIzaSyA4W6hCyZ6VWuq2L5tcN1avfvUiPsejpt8",
"certificateHash": "3C0034ED9375FAAEED8819C92607BA185A0E459D"
},
"googleMaps": {
"apiKey": "AIzaSyA4W6hCyZ6VWuq2L5tcN1avfvUiPsejpt8"
}
}
},
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#A61414"
}
}
}