-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
71 lines (71 loc) · 1.87 KB
/
app.json
File metadata and controls
71 lines (71 loc) · 1.87 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
{
"expo": {
"name": "MacroScan",
"slug": "MacroScan",
"version": "1.6.1",
"orientation": "portrait",
"icon": "./assets/logo4.jpg",
"scheme": [
"macroscan"
],
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"ios": {
"bundleIdentifier": "com.smallcactus.MacroScan",
"buildNumber": "2",
"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera to scan food items.",
"NSPhotoLibraryUsageDescription": "This app needs access to your photo library to select food images.",
"NSLocationWhenInUseUsageDescription": "This app needs access to your location to provide localized pricing based on your geographic location."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION"
],
"package": "com.smallcactus.MacroScan"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "c42ab5b9-26da-4317-9520-8926f5560290"
}
},
"owner": "macroscan",
"plugins": [
[
"expo-asset",
{
"assets": [
"./assets/icon.png",
"./assets/splash.png",
"./assets/adaptive-icon.png",
"./assets/favicon.png"
]
}
],
[
"expo-camera",
{
"cameraPermission": "Allow MacroScan to access your camera",
"microphonePermission": "Allow MacroScan to access your microphone",
"recordAudioAndroid": true
}
],
"expo-secure-store",
"expo-build-properties"
],
"jsEngine": "hermes"
}
}