forked from AppsFlyerSDK/appsflyer-expo-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
85 lines (85 loc) · 1.79 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"expo": {
"name": "groceryLink",
"slug": "groceryLink",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bitcode": false,
"supportsTablet": true,
"bundleIdentifier": "com.appsflyer.grocerylink",
"associatedDomains": [
"applinks:grocerylink-af.onelink.me"
]
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#FFFFFF"
},
"package": "com.appsflyer.grocerylink",
"softwareKeyboardLayoutMode": "pan",
"intentFilters": [
{
"action": "VIEW",
"data": [
{
"scheme": "https",
"host": "grocerylink-af.onelink.me",
"pathPrefix": "/scVs"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
},
{
"action": "VIEW",
"data": [
{}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"react-native-appsflyer",
{}
],
[
"./custom_plugins/withNoBitcode"
],
[
"expo-tracking-transparency",
{
"userTrackingPermission": "Allowing app tracking will improve the customization of ads"
}
]
],
"extra": {
"eas": {
"projectId": "7453ddad-e578-4196-a6ff-f0e3d8caaef9"
}
}
}
}