-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 1.33 KB
/
app.json
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
{
"expo": {
"name": "MedTimely",
"slug": "medtimely",
"version": "1.0.0",
"scheme": "medtimely",
"orientation": "portrait",
"owner": "medtimely",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/adaptive-icon-fg.png",
"resizeMode": "contain",
"backgroundColor": "#c31a38"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"googleServicesFile": "./GoogleService-Info.plist",
"bundleIdentifier": "pt.medtimely.medtimely"
},
"android": {
"package": "pt.medtimely.medtimely",
"googleServicesFile": "./google-services.json",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon-fg.png",
"backgroundImage": "./assets/adaptive-icon-bg.png",
"monochromeImage": "./assets/adaptive-icon-mono.png"
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-camera",
{
"cameraPermission": "Allow medtimely to access your camera for QR-code scanning"
}
]
]
}
}