-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.json
52 lines (52 loc) · 1.33 KB
/
app.config.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
{
"name": "consento",
"displayName": "Consento",
"expo": {
"name": "Consento",
"slug": "consento",
"owner": "grp",
"privacy": "public",
"version": "1.0.2",
"scheme": "consento",
"entryPoint": "./index.js",
"platforms": [
"ios",
"android",
"web"
],
"description": "The first (currently alpha) Consento mobile application.",
"icon": "./assets/icon/[email protected]",
"githubUrl": "https://github.com/consento-org/mobile",
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#484848",
"translucent": true
},
"splash": {
"backgroundColor": "#FCFCFC",
"image": "./assets/splash/[email protected]"
},
"android": {
"package": "org.consento.mobile",
"permissions": [
"CAMERA"
],
"allowBackup": false,
"useNextNotificationsApi": true
},
"ios": {
"bundleIdentifier": "org.consento.mobile",
"infoPlist": {
"NSCameraUsageDescription": "This lets you take photos and scan QR codes."
},
"icon": "./assets/icon/[email protected]"
},
"notification": {
"icon": "./assets/icon/[email protected]",
"color": "#FCFCFC",
"iosDisplayInForeground": false,
"androidMode": "collapse",
"androidCollapsedTitle": "Consento"
}
}
}