forked from ssmirr/conduit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
54 lines (54 loc) · 1.52 KB
/
app.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"expo": {
"name": "conduit",
"slug": "conduit",
"version": "1.8.0",
"orientation": "portrait",
"scheme": "conduit",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "ca.psiphon.conduit",
"buildNumber": "5",
"icon": "./assets/images/ios-icon.png"
},
"android": {
"package": "ca.psiphon.conduit",
"versionCode": 59,
"adaptiveIcon": {
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png"
},
"edgeToEdgeEnabled": true
},
"extra": {
"supportsRTL": true
},
"plugins": [
"expo-router",
"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
}
}
}