-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
75 lines (75 loc) · 1.89 KB
/
app.json
File metadata and controls
75 lines (75 loc) · 1.89 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
{
"expo": {
"name": "InventoryEver",
"slug": "inventory-ever",
"version": "1.0.0",
"newArchEnabled": true,
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#1a1a2e"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.inventoryever.app",
"infoPlist": {
"NSCameraUsageDescription": "Allow InventoryEver to access your camera to scan items and receipts.",
"NSMicrophoneUsageDescription": "Allow InventoryEver to access your microphone for voice input.",
"NSPhotoLibraryUsageDescription": "Allow InventoryEver to access your photo library."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#1a1a2e"
},
"package": "com.inventoryever.app",
"permissions": [
"CAMERA",
"RECORD_AUDIO",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE"
]
},
"web": {
"favicon": "./assets/favicon.png",
"bundler": "metro"
},
"plugins": [
"expo-router",
[
"expo-notifications",
{
"icon": "./assets/icon.png",
"color": "#3B82F6",
"sounds": [],
"mode": "production"
}
],
[
"expo-camera",
{
"cameraPermission": "Allow InventoryEver to access your camera to scan items and receipts."
}
],
[
"expo-image-picker",
{
"photosPermission": "Allow InventoryEver to access your photos."
}
]
],
"scheme": "inventory-ever",
"extra": {
"eas": {
"projectId": "REPLACE_WITH_YOUR_EAS_PROJECT_ID"
}
}
}
}