-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
49 lines (49 loc) · 1.23 KB
/
app.json
File metadata and controls
49 lines (49 loc) · 1.23 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
48
49
{
"expo": {
"name": "ADDday",
"slug": "addday",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"version": "1.4.0",
"orientation": "portrait",
"icon": "./src/assets/images/addday-logo@1024.png",
"splash": {
"image": "./src/assets/images/addday-splash-screen.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"userInterfaceStyle": "automatic",
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "studio.raccoon.addday",
"buildNumber": "1.4.0",
"infoPlist": {
"NSFaceIDUsageDescription": "This app uses FaceID to secure the access to your perosnal information. Using FaceID helps us ensuring that only the owner of the device can access the stored health information."
}
},
"android": {
"package": "studio.raccoon.addday",
"versionCode": 0
},
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "Raccoon Studio",
"project": "ADDday"
}
}
]
}
}
}