-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
41 lines (41 loc) · 1.15 KB
/
app.json
File metadata and controls
41 lines (41 loc) · 1.15 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
{
"expo": {
"name": "HOALog",
"slug": "hoalog",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#F2F2F7"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.hoalog.app",
"infoPlist": {
"NSCameraUsageDescription": "HOALog uses your camera to photograph incidents as evidence.",
"NSPhotoLibraryUsageDescription": "HOALog accesses your photo library to attach evidence photos.",
"NSLocationWhenInUseUsageDescription": "HOALog logs GPS coordinates to document exactly where each incident occurred."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#F2F2F7"
},
"package": "com.hoalog.app",
"permissions": [
"CAMERA",
"READ_EXTERNAL_STORAGE",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION"
]
},
"plugins": [
"expo-image-picker",
"expo-location"
]
}
}