-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
57 lines (57 loc) · 1.44 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
{
"expo": {
"name": "DevLogz",
"slug": "webview-app",
"version": "1.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF",
"dark": {
"backgroundColor": "#000000"
}
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "dev.expo.mywebviewapp",
"buildNumber": "1",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"UIViewControllerBasedStatusBarAppearance": true,
"UIStatusBarHidden": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff",
"monochromeImage": "./assets/adaptive-icon.png"
},
"icon": "./assets/icon.png",
"package": "dev.expo.mywebviewapp",
"softwareKeyboardLayoutMode": "pan"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "9ff4209e-7d0e-4e3a-b172-2e67ef4bc7e2"
}
},
"runtimeVersion": "1.0.0",
"updates": {
"url": "https://u.expo.dev/9ff4209e-7d0e-4e3a-b172-2e67ef4bc7e2",
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 0
}
}
}