-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
68 lines (68 loc) · 1.66 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
64
65
66
67
68
{
"expo": {
"name": "Fwew",
"slug": "fwew-react",
"version": "4.2.2",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "fwew",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#7494BA"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "app.fwew.react",
"buildNumber": "4.2.2",
"supportsTablet": true
},
"android": {
"package": "app.fwew.react",
"versionCode": 26,
"permissions": [],
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-fwew.png",
"backgroundColor": "#7494ba",
"monochromeImage": "./assets/images/monochrome-fwew.png"
},
"icon": "./assets/images/icon.png"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"./withAndroidRemovedPermissions",
[
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.SYSTEM_ALERT_WINDOW",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.VIBRATE"
]
],
"expo-font"
],
"experiments": {
"typedRoutes": true,
"tsconfigPaths": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "8dda2b73-89f1-448d-9bd3-b4d8919d2851"
}
},
"owner": "fwew"
}
}