eas.json 481 B

12345678910111213141516171819202122232425262728
  1. {
  2. "cli": {
  3. "version": ">= 5.6.0"
  4. },
  5. "build": {
  6. "development": {
  7. "developmentClient": true,
  8. "distribution": "internal",
  9. "channel": "development",
  10. "env": {
  11. "ENV": "development"
  12. }
  13. },
  14. "production": {
  15. "channel": "production",
  16. "autoIncrement": true,
  17. "android": {
  18. "buildType": "app-bundle"
  19. },
  20. "env": {
  21. "ENV": "production"
  22. }
  23. }
  24. },
  25. "submit": {
  26. "production": {}
  27. }
  28. }