capacitor.config.json 1014 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "appId": "com.bigauction.mobile",
  3. "appName": "FirstCash",
  4. "webDir": "dist",
  5. "bundledWebRuntime": true,
  6. "backgroundColor": "#1C1C1C",
  7. "errorPath": "error.html",
  8. "android": {
  9. "buildOptions": {
  10. "keystorePath": "../zouma.jks",
  11. "keystorePassword": "zouma123",
  12. "keystoreAlias": "zouma",
  13. "keystoreAliasPassword": "zouma123",
  14. "releaseType": "APK"
  15. },
  16. "releaseType": "APK",
  17. "minWebViewVersion": 60
  18. },
  19. "ios": {
  20. "allowsLinkPreview": false
  21. },
  22. "plugins": {
  23. "SplashScreen": {
  24. "launchShowDuration": 2000,
  25. "androidScaleType": "CENTER_CROP"
  26. },
  27. "CodePush": {
  28. "IOS_DEPLOY_KEY": "eAdEIJJkMhuRwBKVpDXvbay6Ay0yEJAbzi0Ur",
  29. "ANDROID_DEPLOY_KEY": "ZrEsHcngd89oYtHZYQxLRUSMJ8trafzoNUVDN",
  30. "SERVER_URL": "https://codepush.appcenter.ms/"
  31. }
  32. },
  33. "server": {
  34. "errorPath": "error.html"
  35. }
  36. }