-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapacitor.config.ts
38 lines (37 loc) · 1.09 KB
/
capacitor.config.ts
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
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'YOUR_APP_ID',
appName: 'Task Manager',
webDir: 'www',
loggingBehavior: 'debug',
server: {
androidScheme: "http"
},
plugins: {
CapacitorSQLite: {
iosDatabaseLocation: 'Library/CapacitorDatabase',
iosIsEncryption: false,
iosKeychainPrefix: 'YOUR_APP_NAME',
iosBiometric: {
biometricAuth: false,
biometricTitle : "Biometric login for capacitor sqlite"
},
androidIsEncryption: false,
androidBiometric: {
biometricAuth : false,
biometricTitle : "Biometric login for capacitor sqlite",
biometricSubTitle : "Log in using your biometric"
},
electronIsEncryption: false,
electronWindowsLocation: "C:\\ProgramData\\CapacitorDatabases",
electronMacLocation: "/Users/YOUR_NAME/CapacitorDatabases",
electronLinuxLocation: "Databases"
},
LocalNotifications: {
smallIcon: "ic_stat_icon_config_sample",
iconColor: "#488AFF",
sound: "beep.wav",
}
}
};
export default config;