-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapacitor.config.ts
44 lines (43 loc) · 1.27 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
39
40
41
42
43
44
import type { CapacitorConfig } from "@capacitor/cli";
export default {
appId: "com.yizack.saldometrobus",
appName: "Saldo Metrobús Panamá",
webDir: ".output/public",
bundledWebRuntime: false,
server: {
androidScheme: "https",
hostname: "saldometrobus.yizack.com"
},
plugins: {
CapacitorHttp: {
enabled: true
},
SplashScreen: {
launchShowDuration: 1000,
launchAutoHide: true,
launchFadeOutDuration: 200,
androidScaleType: "CENTER_CROP",
splashFullScreen: false,
splashImmersive: false,
backgroundColor: "#F8F9FC"
},
CapacitorSQLite: {
iosDatabaseLocation: "Library/CapacitorDatabase",
iosIsEncryption: false,
iosKeychainPrefix: "cap",
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"
},
electronWindowsLocation: "C:\\ProgramData\\CapacitorDatabases",
electronMacLocation: "Yizack/CapacitorDatabases",
electronLinuxLocation: "Databases"
}
}
} satisfies CapacitorConfig;