-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
64 lines (64 loc) · 1.52 KB
/
app.json
File metadata and controls
64 lines (64 loc) · 1.52 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
{
"$schema": "https://www.schemastore.org/expo-52.0.0.json",
"expo": {
"name": "X-Wing Wiki",
"slug": "x-wiki-wiki",
"version": "1.1.0",
"newArchEnabled": true,
"orientation": "portrait",
"icon": "./src/assets/icons/icon.png",
"scheme": "xwing",
"userInterfaceStyle": "dark",
"ios": {
"supportsTablet": true
},
"android": {
"edgeToEdgeEnabled": true,
"adaptiveIcon": {
"foregroundImage": "./src/assets/icons/adaptive-icon.png",
"backgroundColor": "#000000"
},
"package": "com.visualsource.xwikiwiki"
},
"web": {
"bundler": "metro",
"output": "single",
"favicon": "./src/assets/icons/icon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"imageWidth": 200,
"image": "./src/assets/icons/adaptive-icon.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
}
],
[
"expo-font",
{
"fonts": [
"./src/assets/fonts/XWingIcons.ttf",
"./src/assets/fonts/BankGthd.ttf",
"./src/assets/fonts/EurostileDemiOblique.ttf",
"./src/assets/fonts/kimberley.otf"
]
}
],
"expo-web-browser"
],
"experiments": {
"typedRoutes": true,
"reactCanary": true
},
"extra": {
"router": {},
"eas": {
"projectId": "54bd40b6-961d-43f7-902a-7807cfa9135c"
}
},
"owner": "visualsource"
}
}