-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
63 lines (63 loc) · 1.4 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
{
"expo": {
"name": "Ringer",
"slug": "ringer-client-mobile",
"version": "1.5.0",
"owner": "lif_platforms",
"orientation": "portrait",
"icon": "./assets/global/icon.png",
"userInterfaceStyle": "dark",
"updates": {
"enabled": false
},
"splash": {
"image": "./assets/global/splash.png",
"resizeMode": "contain",
"backgroundColor": "#160900"
},
"doctor": {
"reactNativeDirectoryCheck": {
"enabled": true
}
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.lifplatforms.ringer",
"jsEngine": "hermes",
"icon": {
"light": "./assets/global/icon_light.png",
"dark": "./assets/global/icon_dark.png",
"tinted": "./assets/global/icon_tinted.png"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/global/icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.lifplatforms.ringer"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "2873c89f-ddd2-4ec5-8f5b-2406277488d5"
}
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": true
},
"android": {
"newArchEnabled": true
}
}
],
"expo-secure-store"
]
}
}