capacitor.config.json 874 B

12345678910111213141516171819202122232425262728293031
  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. "launchAutoHide": false
  24. },
  25. "CodePush": {
  26. "IOS_DEPLOY_KEY": "eAdEIJJkMhuRwBKVpDXvbay6Ay0yEJAbzi0Ur",
  27. "ANDROID_DEPLOY_KEY": "ZrEsHcngd89oYtHZYQxLRUSMJ8trafzoNUVDN",
  28. "SERVER_URL": "https://codepush.appcenter.ms/"
  29. }
  30. }
  31. }