-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
99 lines (98 loc) · 2.58 KB
/
app.json
File metadata and controls
99 lines (98 loc) · 2.58 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
{
"expo": {
"name": "Pantry",
"slug": "pantry",
"version": "1.0.0",
"description": "A collaborative pantry + grocery app that removes the stress, guessing, and roommate politics of sharing food and essentials.",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"scheme": "pantry",
"primaryColor": "#000000",
"privacy": "https://www.pantryapp.dev/privacy",
"termsOfServiceUrl": "https://www.pantryapp.dev/terms",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"hooks": {
"postPublish": []
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.ellalesperance.pantry",
"associatedDomains": [
"applinks:pantry.app"
],
"infoPlist": {
"NSCameraUsageDescription": "We need camera access to scan receipts and barcodes",
"NSPhotoLibraryUsageDescription": "We need photo library access to upload receipt images",
"NSSMSUsageDescription": "We need SMS access to share grocery lists and invite household members"
},
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.ellalesperance.pantry",
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"permissions": [
"CAMERA",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE",
"android.permission.CAMERA"
],
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "pantry.app",
"pathPrefix": "/verify-email"
},
{
"scheme": "https",
"host": "pantry.app",
"pathPrefix": "/reset-password"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "15.5"
},
"android": {
"minSdkVersion": 23
}
}
]
],
"extra": {
"eas": {
"projectId": "88c47002-7aa7-4732-bb00-c468bb4011ce"
}
},
"owner": "ellalesperance"
}
}