capacitor.config.json 839 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "appId": "com.example.app",
  3. "appName": "wallet_app",
  4. "webDir": "dist",
  5. "server": {
  6. "url": "http://192.168.0.59:5173",
  7. "cleartext": true,
  8. "allowNavigation": ["*"]
  9. },
  10. "plugins": {
  11. "SplashScreen": {
  12. "launchShowDuration": 3000,
  13. "launchAutoHide": true,
  14. "backgroundColor": "#ffffffff",
  15. "androidSplashResourceName": "splash",
  16. "androidScaleType": "CENTER_CROP",
  17. "showSpinner": false,
  18. "androidSpinnerStyle": "large",
  19. "iosSpinnerStyle": "small",
  20. "spinnerColor": "#999999",
  21. "splashFullScreen": true,
  22. "splashImmersive": true
  23. }
  24. },
  25. "ios": {
  26. "scheme": "App",
  27. "allowsInlineMediaPlayback": true,
  28. "scrollEnabled": true,
  29. "preferredContentMode": "mobile"
  30. },
  31. "android": {
  32. "allowMixedContent": true,
  33. "useLegacyBridge": true
  34. }
  35. }