2023-10-25 14:44:33 +01:00
|
|
|
|
2021-11-29 15:48:35 +01:00
|
|
|
// / <reference types="@capacitor/push-notifications" />
|
|
|
|
|
// / <reference types="@capacitor/splash-screen" />
|
|
|
|
|
|
|
|
|
|
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
|
|
|
|
|
|
const config: CapacitorConfig = {
|
|
|
|
|
appId: 'com.capacitorjs.app.testapp',
|
2023-10-09 14:15:21 +01:00
|
|
|
appName: 'Gabinete Digital',
|
2021-12-02 15:09:06 +01:00
|
|
|
webDir: 'www',
|
2021-11-29 15:48:35 +01:00
|
|
|
plugins: {
|
|
|
|
|
SplashScreen: {
|
|
|
|
|
launchAutoHide: false,
|
|
|
|
|
},
|
|
|
|
|
LocalNotifications: {
|
2023-02-09 11:25:57 +01:00
|
|
|
smallIcon: 'ic_launcher_round',
|
2021-11-29 15:48:35 +01:00
|
|
|
iconColor: '#CE0B7C',
|
|
|
|
|
},
|
|
|
|
|
PushNotifications: {
|
|
|
|
|
presentationOptions: ['alert', 'sound'],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|