mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-03-15 20:32:32 +00:00
28 lines
622 B
TypeScript
28 lines
622 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.github.Qortal.qortalMobile',
|
|
appName: 'Qortal Go',
|
|
webDir: 'dist',
|
|
"plugins": {
|
|
"LocalNotifications": {
|
|
"smallIcon": "qort",
|
|
"iconColor": "#ffffff"
|
|
},
|
|
"SplashScreen": {
|
|
"launchShowDuration": 3000,
|
|
"backgroundColor": "#ffffff",
|
|
"androidScaleType": "FIT_XY",
|
|
"showSpinner": true,
|
|
"androidSpinnerStyle": "large",
|
|
"splashFullScreen": true,
|
|
"splashImmersive": true
|
|
},
|
|
CapacitorHttp: {
|
|
enabled: true,
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|