No Description

capacitor.config.ts 576B

1234567891011121314151617181920212223242526
  1. import { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'net.simplico.tmtlive',
  4. appName: 'TMTApp',
  5. webDir: 'dist',
  6. server: {
  7. androidScheme: 'https'
  8. },
  9. plugins: {
  10. CapacitorHttp: {
  11. enabled: true
  12. },
  13. GoogleAuth: {
  14. scopes: ['profile', 'email'],
  15. serverClientId: '214019008700-7d2rl1u56edjj1s8lk9fvk9934ook9r3.apps.googleusercontent.com',
  16. forceCodeForRefreshToken: true,
  17. },
  18. PushNotifications: {
  19. presentationOptions: ["badge", "sound", "alert"]
  20. }
  21. }
  22. };
  23. export default config;