eas.json 503 B

123456789101112131415161718192021222324252627
  1. {
  2. "cli": {
  3. "version": ">= 18.4.0",
  4. "appVersionSource": "remote"
  5. },
  6. "build": {
  7. "development": {
  8. "bun": "1.3.11",
  9. "developmentClient": true,
  10. "distribution": "internal",
  11. "channel": "development"
  12. },
  13. "preview": {
  14. "bun": "1.3.11",
  15. "distribution": "internal",
  16. "channel": "preview"
  17. },
  18. "production": {
  19. "bun": "1.3.11",
  20. "autoIncrement": true,
  21. "channel": "production"
  22. }
  23. },
  24. "submit": {
  25. "production": {}
  26. }
  27. }