-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
112 lines (112 loc) · 2.81 KB
/
app.json
File metadata and controls
112 lines (112 loc) · 2.81 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
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
{
"expo": {
"name": "CRM Events",
"slug": "crmevents",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./app/assets/images/splash.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"jsEngine": "hermes",
"splash": {
"image": "./app/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"buildNumber": "11",
"bundleIdentifier": "com.crmevents.myapp",
"entitlements": {
"aps-environment": "production"
},
"infoPlist": {
"NSUserNotificationUsageDescription": "Cette application utilise les notifications pour vous informer des mises à jour.",
"UIBackgroundModes": [
"remote-notification"
],
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"package": "com.crmevents.myapp",
"compileSdkVersion": 35,
"targetSdkVersion": 35,
"minSdkVersion": 23,
"versionCode": 4,
"versionName": "2.0.0",
"adaptiveIcon": {
"foregroundImage": "./app/assets/images/splash.png",
"backgroundColor": "#ffffff"
},
"googleServicesFile": "./google-services.json",
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.INTERNET",
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.POST_NOTIFICATIONS"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./app/assets/images/splash.png",
"name": "CRM Events"
},
"plugins": [
"expo-router",
"expo-secure-store",
[
"expo-file-system",
{
"filePermission": true
}
],
[
"expo-av",
{
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone."
}
],
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
},
"android": {
"compileSdkVersion": 35,
"targetSdkVersion": 35,
"buildToolsVersion": "35.0.0"
}
}
],
[
"expo-notifications",
{
"icon": "./app/assets/images/notification.png",
"sounds": [],
"mode": "production"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "208bdf9e-cee4-4672-acb7-847d2a2c70b5"
}
},
"notification": {
"icon": "./app/assets/images/notification.png",
"iosDisplayInForeground": true
},
"owner": "hmichael26"
}
}