-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
54 lines (54 loc) · 1.28 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
{
"expo": {
"name": "9Spokes dashboard",
"description": "9Spokes dashboard",
"slug": "9spokes-dashboard",
"privacy": "public",
"sdkVersion": "34.0.0",
"platforms": [
"ios",
"android",
"web"
],
"version": "0.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.ninespokes.dashboard",
"config": {
"googleSignIn": {
"reservedClientId": "com.googleusercontent.apps.11165695686-e2uirohkascqb8ct7mp6prb152u5c9la"
}
}
},
"android": {
"package": "com.ninespokes.dashboard",
"googleServicesFile": "./google-services.json"
},
"scheme": "nsp",
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "9spokes",
"project": "9spokes-app",
"authToken": "955affd9955f474596fe6354b0966f6ecddc46ba6bb946eba7d0b417ab7ad6f8"
}
}
]
}
}
}