-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
70 lines (70 loc) · 1.62 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
{
"expo": {
"name": "Devpulse",
"slug": "devpulse",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "devpulse",
"userInterfaceStyle": "automatic",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.atlp.pulseapp",
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.atlp.pulseapp",
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "*.devpulse.org",
"pathPrefix": "/register"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"plugins": ["expo-router", "expo-font", "expo-localization", [
"expo-image-picker",
{
"photosPermission": "The app needs access to your photos to let you upload a profile picture."
}
],
[
"expo-splash-screen",
{
"backgroundColor": "#E0E7FF",
"image": "./assets/images/icon.png",
"dark": {
"image": "./assets/images/icon.png",
"backgroundColor": "#020917"
},
"imageWidth": 128
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "f8b7c135-0e7e-45e6-92bc-0d4a7a1435a2"
}
},
"owner": "devpulse"
}
}