-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathcapacitor.config.ts
More file actions
42 lines (40 loc) · 973 Bytes
/
capacitor.config.ts
File metadata and controls
42 lines (40 loc) · 973 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
41
42
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'org.sunbird.app',
appName: 'Sunbird',
webDir: "www/browser",
loggingBehavior: "none",
server: {
androidScheme: 'https',
},
plugins: {
FCMPlugin: {
"ANDROID_FIREBASE_BOM_VERSION": "26.5.0",
"GRADLE_TOOLS_VERSION": "8.1.1",
"GOOGLE_SERVICES_VERSION": "4.3.15",
"ANDROID_DEFAULT_NOTIFICATION_ICON": "@mipmap/ic_launcher"
},
customtabs: {
"URL_SCHEME": "org.sunbird.app",
"URL_HOST": "mobile",
},
"window.plugins.googleplus": {
"PLAY_SERVICES_VERSION": "15.0.1"
},
SplashScreen: {
"launchShowDuration": 0
},
LocalNotifications: {
iconColor: "#488AFF",
smallIcon: 'mipmap-hdpi-icon/ic_launcher',
sound: "beep.wav",
},
EdgeToEdge: {
backgroundColor: "#FFD954",
},
StatusBar: {
overlaysWebView: false,
},
},
};
export default config;