-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
86 lines (86 loc) · 2.03 KB
/
app.json
File metadata and controls
86 lines (86 loc) · 2.03 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
{
"expo": {
"name": "EmbedIn",
"slug": "embedin",
"version": "1.1.0",
"orientation": "default",
"icon": "assets/images/icon.png",
"scheme": "embedin",
"platforms": [
"ios",
"android",
"web"
],
"userInterfaceStyle": "dark",
"newArchEnabled": true,
"splash": {
"image": "assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"ios": {
"icon": "assets/images/icon.png",
"supportsTablet": true,
"backgroundColor": "#000000",
"bundleIdentifier": "com.vijayyuvi.embedin",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true,
"NSAllowsLocalNetworking": true
}
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "assets/images/adaptive-icon.png",
"backgroundColor": "#000000"
},
"package": "com.vijayyuvi.embedin",
"icon": "assets/images/icon.png"
},
"web": {
"bundler": "metro",
"output": "single",
"favicon": "assets/images/favicon.png"
},
"plugins": [
"expo-router",
"expo-font",
"expo-video",
"expo-build-properties",
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true,
"networkSecurityConfig": "@xml/network_security_config",
"minSdkVersion": 26,
"compileSdkVersion": 35,
"targetSdkVersion": 35,
"buildToolsVersion": "35.0.0"
}
}
],
"expo-web-browser"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "398e6419-70a8-4542-9092-48cd51167ddb"
}
},
"owner": "vijayvcm",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/398e6419-70a8-4542-9092-48cd51167ddb"
}
}
}