-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
138 lines (138 loc) · 4.4 KB
/
Copy pathapp.json
File metadata and controls
138 lines (138 loc) · 4.4 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
127
128
129
130
131
132
133
134
135
136
137
138
{
"expo": {
"name": "AvoCook",
"slug": "avocook",
"scheme": "avocook",
"version": "3.2.0",
"locales": {
"en": "./locales/en.json",
"fr": "./locales/fr.json",
"de": "./locales/de.json",
"es": "./locales/es.json",
"it": "./locales/it.json"
},
"orientation": "default",
"userInterfaceStyle": "automatic",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/logo.png",
"resizeMode": "contain",
"backgroundColor": "#F7F3EA",
"dark": {
"image": "./assets/logo-dark.png",
"backgroundColor": "#10201D"
}
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"buildNumber": "2",
"bundleIdentifier": "org.epimac.avocook",
"icon": {
"light": "./assets/icon.png",
"dark": "./assets/icon-dark.png"
},
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"UIRequiresFullScreen": false,
"CFBundleAllowMixedLocalizations": true,
"NSLocalNetworkUsageDescription": "Allow local network access only to connect to a Nextcloud server hosted on your network.",
"NSPhotoLibraryUsageDescription": "Allow access to photos to add an image to a recipe.",
"NSPhotoLibraryAddUsageDescription": "Allow saving recipe images if needed.",
"NSCameraUsageDescription": "Allow camera access to scan recipes from photos.",
"NSCalendarsUsageDescription": "AvoCook requires calendar access because it shares the same system component as reminders, which are used for your grocery lists.",
"NSCalendarsFullAccessUsageDescription": "AvoCook requires calendar access because it shares the same system component as reminders, which are used for your grocery lists.",
"NSRemindersUsageDescription": "AvoCook uses your reminders to export and synchronize your grocery lists.",
"NSRemindersFullAccessUsageDescription": "AvoCook uses your reminders to export and synchronize your grocery lists."
}
},
"android": {
"package": "app.avocook.mobile",
"permissions": [],
"blockedPermissions": [
"android.permission.RECORD_AUDIO",
"android.permission.SYSTEM_ALERT_WINDOW",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.READ_CALENDAR",
"android.permission.WRITE_CALENDAR"
],
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#F7F3EA"
}
},
"web": {
"bundler": "metro",
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-calendar",
{
"calendarPermission": "AvoCook requires calendar access because it shares the same system component as reminders, which are used for your grocery lists.",
"remindersPermission": "AvoCook uses your reminders to export and synchronize your grocery lists."
}
],
"expo-secure-store",
"expo-sqlite",
[
"expo-localization",
{
"supportedLocales": {
"ios": [
"fr",
"en",
"de",
"es",
"it"
],
"android": [
"fr",
"en",
"de",
"es",
"it"
]
}
}
],
[
"expo-splash-screen",
{
"backgroundColor": "#F7F3EA",
"image": "./assets/logo.png",
"imageWidth": 220,
"resizeMode": "contain",
"dark": {
"backgroundColor": "#10201D",
"image": "./assets/logo-dark.png"
}
}
],
[
"expo-image-picker",
{
"photosPermission": "Allow access to photos to add an image to a recipe.",
"cameraPermission": "Allow camera access to scan recipes from photos.",
"microphonePermission": false
}
],
"expo-share-intent",
"./tools/plugins/withAndroidNetworkSecurity",
"./tools/plugins/withAndroidSplitsAndOptimizations",
"./tools/plugins/withAndroidLint",
"./tools/plugins/withOptionalCamera",
"./tools/plugins/withIosBuildNumber",
"expo-font"
],
"extra": {
"eas": {
"projectId": "71346d2a-c2f5-4f0e-a01e-544bfc1f66ca"
}
},
"owner": "logarex"
}
}