forked from Sunbird-AIAssistant/pwa-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapacitor.config.ts
More file actions
36 lines (33 loc) · 799 Bytes
/
capacitor.config.ts
File metadata and controls
36 lines (33 loc) · 799 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
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'app.id',
appName: 'app.name',
loggingBehavior: "none",
webDir: 'www',
server: {
androidScheme: 'https',
allowNavigation: [
"https://drive.google.com",
"https://docs.google.com",
"https://photos.app.goo.gl"
]
},
plugins: {
CapacitorSQLite: {
androidIsEncryption: false
},
SplashScreen: {
"launchShowDuration": 10
},
LocalNotifications: {
iconColor: "#488AFF",
sound: "beep.wav",
},
androidBiometric: {
biometricAuth : false,
biometricTitle : "Biometric login for capacitor sqlite",
biometricSubTitle : "Log in using your biometric"
},
}
};
export default config;