capacitor.config.json 924 B

1234567891011121314151617181920212223242526272829303132
  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. },
  18. "ios": {
  19. "allowsLinkPreview": false
  20. },
  21. "plugins": {
  22. "SplashScreen": {
  23. "launchShowDuration": 2000,
  24. "androidScaleType": "CENTER_CROP"
  25. },
  26. "CodePush": {
  27. "IOS_DEPLOY_KEY": "eAdEIJJkMhuRwBKVpDXvbay6Ay0yEJAbzi0Ur",
  28. "ANDROID_DEPLOY_KEY": "ZrEsHcngd89oYtHZYQxLRUSMJ8trafzoNUVDN",
  29. "SERVER_URL": "https://codepush.appcenter.ms/"
  30. }
  31. }
  32. }