-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
63 lines (63 loc) · 1.34 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": {
"jsEngine": "hermes",
"name": "Ścieżki zdrowia",
"slug": "health-pathes",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/ico.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/spl.png",
"resizeMode": "contain",
"backgroundColor": "#43595a"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive.png",
"backgroundColor": "#43595a"
},
"googleServicesFile": "./google-services.json",
"softwareKeyboardLayoutMode": "pan",
"package": "com.heisenshark.healthpaths"
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-build-properties",
"@react-native-google-signin/google-signin"
],
"extra": {
"eas": {
"projectId": "5149282b-591f-45e6-9f16-659659600a65"
}
},
"sheme": "healthpaths"
},
"build": {
"preview": {
"android": {
"buildType": "apk"
}
},
"preview2": {
"android": {
"gradleCommand": ":app:assembleRelease"
}
},
"preview3": {
"developmentClient": true
},
"production": {}
}
}