-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
73 lines (73 loc) · 2.19 KB
/
Copy pathapp.json
File metadata and controls
73 lines (73 loc) · 2.19 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
72
73
{
"expo": {
"name": "PulseSense",
"slug": "pulsesense",
"version": "1.0.0",
"description": "Offline health companion for vitals, medications, and emergency triage. 100% private, no account required.",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#1A5F7A"
},
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "PulseSense needs camera access to set your profile photo.",
"NSPhotoLibraryUsageDescription": "PulseSense needs photo library access to set your profile photo.",
"NSLocationWhenInUseUsageDescription": "PulseSense uses your location to show your address on the emergency action screen.",
"NSHealthShareUsageDescription": "PulseSense reads your health data to track vitals and provide health insights.",
"NSHealthUpdateUsageDescription": "PulseSense writes your vital recordings to Apple Health."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#1A5F7A"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"permissions": [
"CAMERA",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"POST_NOTIFICATIONS",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION"
],
"package": "com.pulsesense.app"
},
"web": {
"favicon": "./assets/favicon.png"
},
"updates": {
"enabled": false
},
"plugins": [
"expo-sqlite",
"expo-location",
"expo-font",
"react-native-health",
"react-native-health-connect",
"expo-health-connect",
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 36,
"targetSdkVersion": 36,
"minSdkVersion": 26
}
}
]
],
"extra": {
"eas": {
"projectId": "e91156b0-d43d-4423-8bb6-05dfb7a3cf1f"
}
}
}
}