-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
126 lines (126 loc) · 3.16 KB
/
app.json
File metadata and controls
126 lines (126 loc) · 3.16 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"expo": {
"name": "ShiftCalendar",
"slug": "ShiftCalendar",
"version": "2.5.1",
"orientation": "default",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"scheme": "shiftcalendar",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#0F0F0F"
},
"ios": {
"supportsTablet": true,
"infoPlist": {
"CFBundleDocumentTypes": [
{
"CFBundleTypeName": "CSV File",
"LSHandlerRank": "Alternate",
"LSItemContentTypes": [
"public.comma-separated-values-text",
"public.plain-text"
]
},
{
"CFBundleTypeName": "JSON Backup",
"LSHandlerRank": "Alternate",
"LSItemContentTypes": [
"public.json",
"public.data"
]
}
]
}
},
"android": {
"versionCode": 10,
"adaptiveIcon": {
"backgroundColor": "#0F0F0F",
"foregroundImage": "./assets/android-icon-foreground.png",
"backgroundImage": "./assets/android-icon-background.png",
"monochromeImage": "./assets/android-icon-monochrome.png"
},
"softwareKeyboardLayoutMode": "pan",
"package": "com.itroy0.ShiftCalendar",
"intentFilters": [
{
"action": "VIEW",
"category": [
"DEFAULT",
"BROWSABLE"
],
"data": [
{
"scheme": "content",
"mimeType": "text/csv"
},
{
"scheme": "content",
"mimeType": "text/comma-separated-values"
},
{
"scheme": "content",
"mimeType": "text/plain"
},
{
"scheme": "content",
"mimeType": "application/json"
},
{
"scheme": "file",
"mimeType": "text/csv"
},
{
"scheme": "file",
"mimeType": "text/comma-separated-values"
},
{
"scheme": "file",
"mimeType": "text/plain"
},
{
"scheme": "file",
"mimeType": "application/json"
}
]
}
]
},
"web": {
"favicon": "./assets/favicon.png",
"bundler": "metro"
},
"plugins": [
"expo-router",
"expo-sharing",
"expo-notifications",
[
"react-native-android-widget",
{
"widgets": [
{
"name": "ShiftWeek",
"label": "Shift Calendar - Week",
"minWidth": "320dp",
"minHeight": "110dp",
"targetCellWidth": 5,
"targetCellHeight": 2,
"description": "Shows your shifts for the current week",
"updatePeriodMillis": 1800000
}
]
}
],
"expo-font",
"./plugins/withAlarmSound"
],
"extra": {
"eas": {
"projectId": "6d1188e5-bed3-45e9-82ec-4fb2f5856a1e"
}
}
}
}