-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
56 lines (56 loc) · 1.37 KB
/
app.json
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
{
"expo": {
"name": "Our City Forest",
"slug": "our-city-forest",
"newArchEnabled": true,
"owner": "ocfdev",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/bp-icon.png",
"userInterfaceStyle": "light",
"plugins": [
[
"expo-camera",
{
"cameraPermission": "Allow Our City Forest to access your camera to scan QR codes."
}
],
[
"expo-dev-launcher",
{
"launchMode": "most-recent"
}
]
],
"splash": {
"image": "./assets/bp-splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"platforms": ["ios", "android", "web"],
"ios": {
"bundleIdentifier": "org.calblueprint.ourcityforest",
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "This app requires access to the camera to scan QR codes for tree information."
}
},
"android": {
"package": "org.calblueprint.ourcityforest",
"permissions": ["CAMERA"],
"adaptiveIcon": {
"foregroundImage": "./assets/bp-adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/bp-favicon.png"
},
"extra": {
"eas": {
"projectId": "d04f2944-f495-4c9b-b330-6e13ce59c6ff"
}
},
"scheme": "our-city-forest"
}
}