| 1234567891011121314151617181920212223242526 |
- import { CapacitorConfig } from '@capacitor/cli';
- const config: CapacitorConfig = {
- appId: 'net.simplico.tmtlive',
- appName: 'TMTApp',
- webDir: 'dist',
- server: {
- androidScheme: 'https'
- },
- plugins: {
- CapacitorHttp: {
- enabled: true
- },
- GoogleAuth: {
- scopes: ['profile', 'email'],
- serverClientId: '214019008700-7d2rl1u56edjj1s8lk9fvk9934ook9r3.apps.googleusercontent.com',
- forceCodeForRefreshToken: true,
- },
- PushNotifications: {
- presentationOptions: ["badge", "sound", "alert"]
- }
- }
- };
- export default config;
|