capacitor.config.json 599 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "appId": "br.com.diarista.client",
  3. "appName": "Diaria",
  4. "webDir": "www",
  5. "plugins": {
  6. "Keyboard": {
  7. "resize": "native",
  8. "resizeOnFullScreen": true
  9. },
  10. "StatusBar": {
  11. "overlaysWebView": true,
  12. "style": "LIGHT"
  13. },
  14. "SplashScreen": {
  15. "launchAutoHide": false,
  16. "backgroundColor": "#8B5CF6",
  17. "androidScaleType": "CENTER_CROP",
  18. "showSpinner": false,
  19. "splashFullScreen": true,
  20. "splashImmersive": true
  21. },
  22. "CapacitorCookies": {
  23. "enabled": true
  24. },
  25. "CapacitorHttp": {
  26. "enabled": true
  27. }
  28. }
  29. }