32 lines
670 B
TypeScript
32 lines
670 B
TypeScript
import { CapacitorConfig } from "@capacitor/cli";
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "org.cardanofoundation.idw",
|
|
appName: "ID Wallet",
|
|
webDir: "build",
|
|
bundledWebRuntime: false,
|
|
android: {
|
|
webContentsDebuggingEnabled: true,
|
|
},
|
|
ios: {
|
|
webContentsDebuggingEnabled: true,
|
|
},
|
|
plugins: {
|
|
CapacitorSQLite: {
|
|
"iosDatabaseLocation": "Library/IDWalletDatabase"
|
|
},
|
|
SplashScreen: {
|
|
launchShowDuration: 3000,
|
|
launchAutoHide: true,
|
|
launchFadeOutDuration: 1000,
|
|
backgroundColor: "#92FFC0"
|
|
},
|
|
PrivacyScreen: {
|
|
enable: false,
|
|
imageName: "Splashscreen",
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|