-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathapp.json
More file actions
67 lines (67 loc) · 1.93 KB
/
Copy pathapp.json
File metadata and controls
67 lines (67 loc) · 1.93 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
{
"expo": {
"name": "conduit",
"slug": "conduit",
"version": "2.1.4",
"orientation": "portrait",
"scheme": "ca.psiphon.conduit",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "ca.psiphon.conduit",
"buildNumber": "32",
"deploymentTarget": "15.1",
"icon": "./assets/images/conduit-launcher.png",
"infoPlist": {
"LSApplicationQueriesSchemes": ["network.ryve.app"]
}
},
"android": {
"package": "ca.psiphon.conduit",
"versionCode": 82,
"permissions": [
"android.permission.POST_NOTIFICATIONS",
"com.android.vending.BILLING"
],
"adaptiveIcon": {
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png"
},
"edgeToEdgeEnabled": true
},
"extra": {
"supportsRTL": true
},
"plugins": [
[
"expo-router",
{
"root": "./src/app"
}
],
"expo-localization",
"expo-font",
"expo-secure-store",
[
"react-native-edge-to-edge",
{
"android": {
"parentTheme": "Default"
}
}
],
[
"expo-splash-screen",
{
"backgroundColor": "#FEFEFE",
"image": "./assets/images/conduit-launcher.png",
"imageWidth": 200
}
]
],
"experiments": {
"typedRoutes": true
}
}
}