-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathcapacitor.config.json
More file actions
40 lines (40 loc) · 885 Bytes
/
Copy pathcapacitor.config.json
File metadata and controls
40 lines (40 loc) · 885 Bytes
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
{
"appId": "com.quantdinger.mobile",
"appName": "QuantDinger",
"webDir": "dist",
"server": {
"androidScheme": "https",
"hostname": "localhost",
"iosScheme": "https"
},
"plugins": {
"SplashScreen": {
"launchShowDuration": 2000,
"launchAutoHide": true,
"backgroundColor": "#000000",
"showSpinner": true,
"spinnerColor": "#f0b72a"
},
"StatusBar": {
"style": "dark",
"backgroundColor": "#000000"
},
"Keyboard": {
"resize": "body",
"resizeOnFullScreen": true
},
"PushNotifications": {
"presentationOptions": ["badge", "sound", "alert"]
}
},
"android": {
"allowMixedContent": true,
"captureInput": true,
"webContentsDebuggingEnabled": true
},
"ios": {
"contentInset": "automatic",
"preferredContentMode": "mobile",
"scrollEnabled": true
}
}