-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
62 lines (62 loc) · 1.54 KB
/
Copy pathapp.json
File metadata and controls
62 lines (62 loc) · 1.54 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
{
"expo": {
"name": "Label Truth",
"slug": "label-truth",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "label-truth",
"userInterfaceStyle": "dark",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#0B1120"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.masun.labeltruth",
"infoPlist": {
"NSCameraUsageDescription": "Label Truth needs camera access to scan product labels.",
"NSPhotoLibraryUsageDescription": "Label Truth needs photo library access to analyze product labels."
}
},
"android": {
"package": "com.masun.labeltruth",
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#0B1120"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.RECORD_AUDIO"
]
},
"web": {
"favicon": "./assets/images/icon.png"
},
"plugins": [
[
"expo-router",
{
"origin": "https://yourdomain.com/"
}
],
"expo-font",
"expo-web-browser",
"expo-image-picker"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": "https://yourdomain.com/"
},
"eas": {
"projectId": "e02c77e2-36f3-426c-a821-f00c70f3bfbf"
}
}
}
}