-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathapp.json
More file actions
67 lines (67 loc) · 1.56 KB
/
app.json
File metadata and controls
67 lines (67 loc) · 1.56 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
{
"expo": {
"name": "use dom",
"slug": "mdex",
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "usedom",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.bacon.mdex",
"infoPlist": {
"UIViewControllerBasedStatusBarAppearance": true,
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.bacon.mdex"
},
"web": {
"bundler": "metro",
"output": "server",
"favicon": "./assets/images/favicon.png"
},
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"eas": {
"projectId": "06b3157a-c080-423d-aa6f-7c4fc3346b55"
}
},
"plugins": [
[
"expo-router",
{
"sitemap": false,
"redirects": [
{
"source": "/x/ios",
"destination": "https://testflight.apple.com/join/W2r9d14u"
},
{
"source": "/x/src",
"destination": "https://github.com/EvanBacon/expo-dom-components-example"
}
]
}
],
"expo-asset",
"expo-font",
"expo-web-browser",
"expo-image"
]
}
}