deepsite / capacitor-simple.config.ts
almortamoh's picture
Upload 36 files
a79063d verified
raw
history blame
1.15 kB
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.almada.unifiedwallet',
appName: 'محفظتي الموحدة',
webDir: '.',
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
}
};
export default config;