-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
97 lines (97 loc) · 2.25 KB
/
app.json
File metadata and controls
97 lines (97 loc) · 2.25 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"expo": {
"name": "Perflora",
"slug": "Perflora",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/logo_perflora.png",
"scheme": [
"perflora",
"com.arley_col.Perflora"
],
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#0D0D0D"
},
"ios": {
"supportsTablet": true
},
"android": {
"intentFilters": [
{
"action": "VIEW",
"data": [
{
"scheme": "perflora"
},
{
"scheme": "com.arley_col.Perflora"
},
{
"scheme": "https",
"host": "*.redirect.activity.compat"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
],
"adaptiveIcon": {
"foregroundImage": "./assets/images/logoApp.png",
"backgroundImage": "./assets/images/logoApp.png",
"monochromeImage": "./assets/images/logoApp.png",
"backgroundColor": "#ebffe7"
},
"predictiveBackGestureEnabled": false,
"package": "com.arley_col.Perflora"
},
"web": {
"output": "static",
"favicon": "./assets/images/logoApp.png"
},
"plugins": [
"expo-router",
"expo-web-browser",
"expo-updates",
[
"expo-splash-screen",
{
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#F8F6EF",
"imageWidth": 288,
"android": {
"drawable": {
"icon": "./assets/images/transparent-splash-icon.xml"
},
"backgroundColor": "#F8F6EF"
}
}
]
],
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 0
},
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "af4541e0-781e-48ce-be07-84249205eff0"
}
},
"owner": "cater20"
}
}