-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
30 lines (30 loc) · 1 KB
/
app.json
File metadata and controls
30 lines (30 loc) · 1 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
{
"expo": {
"name": "Twenty Timer",
"description": "A minimalist 20-minute/20-second eye care timer. During prolonged screen use, optometrists recommend what is termed the 20-20-20 rule - for every 20 minutes spent looking at a screen, look at something 20 feet away for 20 seconds. Run this app to run automatic 20-minute/20-second intervals and protect your eyes!",
"slug": "twenty-timer",
"privacy": "public",
"sdkVersion": "34.0.0",
"version": "1.0.0",
"githubUrl": "https://github.com/bdbaraban/twenty-timer",
"orientation": "portrait",
"primaryColor": "#4b250c",
"icon": "./src/assets/icon.png",
"platforms": ["ios", "android", "web"],
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#4b250c"
},
"splash": {
"resizeMode": "cover",
"backgroundColor": "#4b250c"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
}
}
}