forked from PEC-CSS/Stock-Watchlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
51 lines (51 loc) · 1.26 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
{
"expo": {
"name": "Stock Watchlist",
"slug": "stock-watchlist",
"scheme": "stockwatchlist",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#00000000"
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.stockwatchlist",
"config": {
"googleSignIn": {
"reservedClientId": "com.googleusercontent.apps.316148951749-8u2uof18venstiufjg0q4uv0hnp1i5lh"
}
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
},
"config" : {
"googleSignIn": {
"apiKey": "AIzaSyBlaYemjd3RU6WzFNFKKga1hMymcDRCyB4",
"certificateHash": "53C960C9BAD9A5C8FE338EED1BD26F80099F55C1"
}
},
"softwareKeyboardLayoutMode": "pan",
"package": "com.stockwatchlist"
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}