-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
48 lines (48 loc) · 1.87 KB
/
app.json
File metadata and controls
48 lines (48 loc) · 1.87 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
{
"expo": {
"name": "Overload",
"slug": "training",
"version": "1.0.0",
"orientation": "portrait",
"entryPoint": "./App.tsx",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "julianmoik.overload",
"infoPlist": {
"UIFileSharingEnabled": true,
"LSSupportsOpeningDocumentsInPlace": true,
"NSDocumentsFolderUsageDescription": "This app needs access to documents for importing training data.",
"NSHealthShareUsageDescription": "This app requires access to your health and fitness data to track your workouts and provide insights.",
"NSHealthUpdateUsageDescription": "This app requires permission to update your health and fitness data for accurate workout tracking and analysis.",
"NSHealthClinicalHealthRecordsShareUsageDescription": "This app requires access to your clinical health records to provide comprehensive health insights.",
"UIRequiredDeviceCapabilities": ["healthkit"]
},
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "julianmoik.overload"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "d53017a3-3d40-4c0f-801b-f9d0d328abe4"
}
},
"plugins": ["react-native-health"]
}
}