-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
98 lines (98 loc) · 2.41 KB
/
Copy pathapp.json
File metadata and controls
98 lines (98 loc) · 2.41 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"expo": {
"name": "entangle",
"slug": "entangle-mobile",
"version": "0.0.2",
"orientation": "portrait",
"scheme": "entangle",
"userInterfaceStyle": "automatic",
"ios": {
"icon": "./assets/AppIcon.icon",
"infoPlist": {
"NSLocalNetworkUsageDescription": "Entangle needs local-network access to discover your Mac and send pointer events.",
"NSBonjourServices": [
"_entangle._tcp.",
"_entangle._tcp."
],
"ITSAppUsesNonExemptEncryption": false
},
"bundleIdentifier": "com.gabrieldonadel.entangle-mobile",
"appleTeamId": "3VRHBFMBRL",
"associatedDomains": [
"applinks:entangle.donadel.dev"
]
},
"android": {
"icon": "./assets/images/icon.png",
"package": "com.gabrieldonadel.entangle",
"permissions": [
"android.permission.CHANGE_WIFI_MULTICAST_STATE",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.ACCESS_WIFI_STATE"
],
"predictiveBackGestureEnabled": false,
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "entangle.donadel.dev",
"pathPrefix": "/pair"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"web": {
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"backgroundColor": "#0E1014",
"image": "./assets/images/splash.png",
"enableFullScreenImage_legacy": true,
"android": {
"image": "./assets/images/icon.png",
"resizeMode": "cover"
}
}
],
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
"expo-image",
"expo-web-browser"
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "220d921b-e531-4064-8453-3be26e897841"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/220d921b-e531-4064-8453-3be26e897841"
}
}
}