-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
55 lines (55 loc) · 1.35 KB
/
app.json
File metadata and controls
55 lines (55 loc) · 1.35 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
50
51
52
53
54
55
{
"expo": {
"name": "FocusOwl",
"slug": "focus-owl",
"description": "Focus timer app to optimize work and study sessions.",
"privacy": "unlisted",
"sdkVersion": "36.0.0",
"githubUrl": "https://github.com/zcribe/FocusOwl",
"platforms": [
"ios",
"android"
],
"version": "0.0.5",
"icon": "./assets/images/logo.png",
"splash": {
"image": "./assets/images/repohead.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"versionCode": 4,
"config": {
"googleMobileAdsAppId": "ca-app-pub-6870019974253956~2352818487"
},
"package": "www.erlend.ee",
"permissions": ["VIBRATE", "READ_EXTERNAL_STORAGE", "WRITE_EXTERNAL_STORAGE"]
},
"androidStatusBar": {
"backgroundColor": "#1A2640",
"barStyle": "dark-content"
},
"primaryColor": "#1A2640",
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "erlend",
"project": "focusowl",
"authToken": "0631064ff27e40599b19092c6bc3df58c8ad612c81294818b069392d13366429"
}
}
]
}
}
}