-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
52 lines (52 loc) · 1.6 KB
/
Copy pathapp.json
File metadata and controls
52 lines (52 loc) · 1.6 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
{
"expo": {
"name": "TRIPS PH",
"slug": "tripsph",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/TRIPSPH-icon-white.png",
"userInterfaceStyle": "dark",
"newArchEnabled": true,
"splash": {
"image": "./assets/TRIPSPH-logo-white.png",
"resizeMode": "contain",
"backgroundColor": "#163b42"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "ph.mmda.tripsph",
"infoPlist": {
"NSCameraUsageDescription": "TRIPS PH uses your camera to capture parking violation photos for AI-verified reporting.",
"NSLocationWhenInUseUsageDescription": "TRIPS PH uses your location to provide real-time parking risk information at your exact GPS coordinate.",
"NSLocationAlwaysAndWhenInUseUsageDescription": "TRIPS PH uses your location to provide real-time parking risk information at your exact GPS coordinate."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/TRIPSPH-icon-white.png",
"backgroundColor": "#163b42"
},
"edgeToEdgeEnabled": true,
"package": "ph.mmda.tripsph",
"permissions": [
"android.permission.CAMERA",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_BACKGROUND_LOCATION"
]
},
"web": {
"favicon": "./assets/TRIPSPH-icon-white.png",
"bundler": "metro"
},
"plugins": [
"expo-camera",
"expo-location"
],
"extra": {
"eas": {
"projectId": "tripsph-mmda"
}
}
}
}