-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
139 lines (139 loc) · 3.89 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"expo": {
"name": "Renaissance",
"slug": "vox",
"scheme": "vox",
"version": "5.10.0",
"owner": "parti-renaissance",
"runtimeVersion": {
"policy": "appVersion"
},
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"privacyManifests": {
"NSPrivacyAccessedAPITypes": [
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryDiskSpace",
"NSPrivacyAccessedAPITypeReasons": ["E174.1"]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryFileTimestamp",
"NSPrivacyAccessedAPITypeReasons": ["C617.1"]
}
]
},
"infoPlist": {
"UIBackgroundModes": ["fetch", "remote-notification"],
"NSCalendarsUsageDescription": "Requis pour partager les événements dans le calendrier",
"NSContactsUsageDescription": "Requis pour partager les événements dans le calendrier",
"NSCalendarsWriteOnlyAccessUsageDescription": "Requis pour partager les événements dans le calendrier",
"NSLocationAlwaysAndWhenInUseUsageDescription": "Requis pour localiser les portes à frapper et les questionnaires réalisés.",
"NSLocationWhenInUseUsageDescription": "Requis pour localiser les portes à frapper et les questionnaires réalisés."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
],
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.READ_CALENDAR",
"android.permission.FOREGROUND_SERVICE",
"android.permission.WRITE_CALENDAR"
],
"config": {
"googleMaps": {
"apiKey": "key"
}
}
},
"web": {
"favicon": "./assets/favicon.png",
"bundler": "metro"
},
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "Autorisez $(PRODUCT_NAME) à accéder à vos photos",
"cameraPermission": "Autorisez $(PRODUCT_NAME) à accéder à votre appareil photo"
}
],
"expo-router",
[
"@sentry/react-native/expo",
{
"project": "vox",
"organization": "parti-renaissance"
}
],
"expo-localization",
"@react-native-firebase/app",
"@react-native-firebase/messaging",
"expo-secure-store",
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
},
"android": {
"playServicesLocationVersion": "21.0.1"
}
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location."
}
],
[
"react-native-permissions",
{
"iosPermissions": ["CalendarsWriteOnly"],
"androidPermissions": ["android.permission.WRITE_CALENDAR"]
}
],
["react-native-add-calendar-event"],
["expo-notifications"]
],
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "3b41ebc2-860e-4ccb-a101-5edc6b0c7558"
}
},
"experiments": {
"typedRoutes": true
},
"updates": {
"url": "https://u.expo.dev/3b41ebc2-860e-4ccb-a101-5edc6b0c7558",
"checkAutomatically": "NEVER"
}
}
}