-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
63 lines (63 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"expo": {
"name": "djo",
"slug": "djo",
"scheme": "djo",
"version": "1.6.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#202088"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"buildNumber": "1",
"userInterfaceStyle": "automatic",
"supportsTablet": false,
"bundleIdentifier": "nl.djoamersfoort.djo",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"UIBackgroundModes": ["remote-notification"],
"LSApplicationQueriesSchemes": ["djo"]
}
},
"android": {
"package": "nl.djoamersfoort.djo",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#202088"
},
"config": {
"googleMaps": {
"apiKey": "AIzaSyDylBhuAOrAusZzyiVUm9NRWgk83Jzc6vY"
}
},
"googleServicesFile": "./google-services.json",
"versionCode": 14
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-secure-store",
[
"expo-image-picker",
{
"photosPermission": "Allows you to upload media",
"cameraPermission": "Allows you to upload media",
"microphonePermission": "Allows you to upload media"
}
]
],
"extra": {
"eas": {
"projectId": "b244a444-1aac-455c-93bf-119317e041fd"
}
}
}
}