| const config = { | |
| appId: 'com.almada.unifiedwallet', | |
| appName: 'محفظتي الموحدة', | |
| webDir: 'www', | |
| bundledWebRuntime: false, | |
| server: { | |
| androidScheme: 'https' | |
| }, | |
| plugins: { | |
| SplashScreen: { | |
| launchShowDuration: 3000, | |
| launchAutoHide: true, | |
| backgroundColor: "#4361ee", | |
| androidSplashResourceName: "splash", | |
| androidScaleType: "CENTER_CROP", | |
| showSpinner: false, | |
| splashFullScreen: true, | |
| splashImmersive: true | |
| }, | |
| StatusBar: { | |
| style: "LIGHT", | |
| backgroundColor: "#4361ee" | |
| }, | |
| Keyboard: { | |
| resize: "body", | |
| style: "dark", | |
| resizeOnFullScreen: true | |
| }, | |
| LocalNotifications: { | |
| smallIcon: "ic_stat_icon_config_sample", | |
| iconColor: "#4361ee", | |
| sound: "beep.wav" | |
| }, | |
| Device: { | |
| permissions: { | |
| device: "تحتاج هذه الميزة لتحديد هوية الجهاز للأمان" | |
| } | |
| } | |
| }, | |
| android: { | |
| allowMixedContent: true, | |
| captureInput: true, | |
| webContentsDebuggingEnabled: true | |
| } | |
| }; | |
| module.exports = config; | |