-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
75 lines (75 loc) · 2.63 KB
/
app.json
File metadata and controls
75 lines (75 loc) · 2.63 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
74
75
{
"expo": {
"name": "Medical Health App",
"slug": "medical-health-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.medicalhealth.app",
"infoPlist": {
"NSCameraUsageDescription": "This app needs access to camera to scan prescriptions and capture medication images.",
"NSPhotoLibraryUsageDescription": "This app needs access to photo library to upload prescription images.",
"NSFaceIDUsageDescription": "This app uses Face ID for secure authentication.",
"NSMicrophoneUsageDescription": "This app needs microphone access for voice commands.",
"NSLocationWhenInUseUsageDescription": "This app uses location to find nearby pharmacies.",
"NSHealthShareUsageDescription": "This app needs access to health data to sync medication information.",
"NSHealthUpdateUsageDescription": "This app needs to update health data with medication information."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
},
"package": "com.medicalhealth.app",
"permissions": [
"android.permission.CAMERA",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.USE_FINGERPRINT",
"android.permission.USE_BIOMETRIC",
"android.permission.RECORD_AUDIO",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.READ_CALENDAR",
"android.permission.WRITE_CALENDAR",
"android.permission.VIBRATE",
"android.permission.WAKE_LOCK",
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.SCHEDULE_EXACT_ALARM",
"android.permission.POST_NOTIFICATIONS"
]
},
"web": {
"favicon": "./src/assets/favicon.png"
},
"plugins": [
"expo-camera",
"expo-image-picker",
"expo-calendar",
"expo-location",
"expo-media-library",
"expo-file-system",
"expo-barcode-scanner",
"expo-av",
"expo-splash-screen",
"expo-system-ui"
],
"extra": {
"eas": {
"projectId": "your-project-id"
}
}
}
}