-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.json
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathapp.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"expo": {
"name": "Detour Expo Bare",
"slug": "detour-expo-bare",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/detour-logo.png",
"newArchEnabled": true,
"scheme": "detour-expo-bare",
"ios": {
"bundleIdentifier": "detourreactnative.expobare",
"supportsTablet": true,
"icon": "./assets/detour-logo.png",
"associatedDomains": [
"applinks:<your-org>.godetour.link"
],
"infoPlist": {
"NSUserTrackingUsageDescription": "This identifier will be used to deliver personalized ads and measure their effectiveness."
}
},
"android": {
"package": "detourreactnative.expobare",
"adaptiveIcon": {
"foregroundImage": "./assets/detour-logo.png",
"backgroundColor": "#0C1221"
},
"edgeToEdgeEnabled": true,
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "<your-org>.godetour.link",
"pathPrefix": "/<your-app-hash>"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"plugins": [
[
"expo-splash-screen",
{
"backgroundColor": "#0C1221",
"image": "./assets/detour-logo-transparent.png",
"imageWidth": 120,
"android": {
"image": "./assets/detour-logo-transparent.png",
"imageWidth": 120
}
}
],
"expo-tracking-transparency"
],
"experiments": {
"reactCompiler": true
}
}
}