forked from calcom/companion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
119 lines (119 loc) · 3.12 KB
/
app.json
File metadata and controls
119 lines (119 loc) · 3.12 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
{
"expo": {
"name": "Calcom",
"slug": "calcom-companion",
"scheme": ["calcom", "expo-wxt-app"],
"version": "1.0.4",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": false,
"appleTeamId": "ADWKXDJV75",
"deploymentTarget": "18.0",
"bundleIdentifier": "com.cal.companion",
"userInterfaceStyle": "automatic",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
},
"entitlements": {
"com.apple.developer.default-data-protection": "NSFileProtectionComplete",
"com.apple.security.application-groups": ["group.com.cal.companion"]
},
"icon": "./assets/cal-logo.icon"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"package": "com.calcom.companion",
"softwareKeyboardLayoutMode": "pan",
"usesCleartextTraffic": false,
"userInterfaceStyle": "automatic"
},
"web": {
"favicon": "./assets/favicon.png",
"bundler": "metro"
},
"extra": {
"eas": {
"projectId": "f5e97f6f-1e95-44ac-bfa4-f737ef90f198"
}
},
"owner": "calcoms-organization",
"plugins": [
"expo-router",
"expo-secure-store",
"expo-web-browser",
"expo-image",
[
"expo-splash-screen",
{
"backgroundColor": "#ffffff",
"image": "./assets/splash-icon.png",
"imageWidth": 200
}
],
[
"@react-native-community/datetimepicker",
{
"android": {
"datePicker": {
"colorAccent": {
"light": "#000000"
},
"textColorPrimary": {
"light": "#000000"
}
},
"timePicker": {
"background": {
"light": "#ffffff"
},
"numbersBackgroundColor": {
"light": "#ffffff"
},
"headerBackground": {
"light": "#000000"
},
"numbersSelectorColor": {
"light": "#000000"
}
}
}
}
],
"@bacons/apple-targets",
[
"react-native-android-widget",
{
"widgets": [
{
"name": "UpcomingBookingsWidget",
"label": "Upcoming Bookings",
"minWidth": "180dp",
"minHeight": "110dp",
"description": "View your upcoming Cal.com bookings",
"previewImage": "./assets/widget-preview.png",
"resizeMode": "horizontal|vertical",
"targetCellWidth": 3,
"targetCellHeight": 2
}
]
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
}
}
}