-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
55 lines (55 loc) · 1.4 KB
/
Copy pathapp.json
File metadata and controls
55 lines (55 loc) · 1.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
{
"expo": {
"name": "Reppii",
"slug": "reppii",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "reppii",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/icon.png",
"resizeMode": "contain",
"backgroundColor": "#05000E"
},
"ios": {
"supportsTablet": false,
"infoPlist": {
"NSCameraUsageDescription": "Reppii uses your camera to scan food and calculate nutrition.",
"NSPhotoLibraryUsageDescription": "Reppii reads photos to analyse food and calculate nutrition."
}
},
"android": {
"permissions": [
"android.permission.CAMERA",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.READ_MEDIA_IMAGES"
]
},
"web": {
"favicon": "./assets/images/icon.png"
},
"plugins": [
[
"expo-router",
{
"origin": "https://replit.com/"
}
],
"expo-font",
"expo-web-browser",
[
"expo-image-picker",
{
"photosPermission": "Reppii reads photos to analyse food and calculate nutrition.",
"cameraPermission": "Reppii uses your camera to scan food and calculate nutrition."
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
}
}
}