-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
47 lines (47 loc) · 1.01 KB
/
app.json
File metadata and controls
47 lines (47 loc) · 1.01 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
{
"expo": {
"version": "1.0.0",
"name": "Pause",
"slug": "pause",
"description": "Short exercises to do during the break.",
"githubUrl": "https://github.com/webstrongteam/pause",
"orientation": "portrait",
"platforms": ["ios", "android"],
"privacy": "public",
"ios": {
"buildNumber": "1.0.0.0",
"bundleIdentifier": "com.webStrong.pause",
"supportsTablet": false
},
"android": {
"versionCode": 1000,
"package": "com.webStrong.pause"
},
"primaryColor": "#1A6A73",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#1A6A73"
},
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "webstrongteam",
"project": "pause"
}
}
]
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": ["ts", "tsx", "scss", "sass"]
}
}
}