forked from boost-pool/boost-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapacitor.config.ts
37 lines (33 loc) · 923 Bytes
/
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
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'io.ionic.starter',
appName: 'boostWallet',
webDir: "out",
bundledWebRuntime: true,
plugins: {
SplashScreen: {
launchShowDuration: 0,
},
CapacitorSQLite: {
iosDatabaseLocation: 'Library/CapacitorDatabase',
iosIsEncryption: true,
iosKeychainPrefix: 'react-sqlite-app-starter',
iosBiometric: {
biometricAuth: false,
biometricTitle : "Biometric login for capacitor sqlite"
},
androidIsEncryption: true,
androidBiometric: {
biometricAuth : false,
biometricTitle : "Biometric login for capacitor sqlite",
biometricSubTitle : "Log in using your biometric"
}
}
},
//server: {
//url: "http://192.168.0.13:3000",
//url: "http://192.168.31.149:3000",
//cleartext: true,
//}
};
export default config;