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