eas.json 714 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "cli": {
  3. "version": ">= 0.60.0"
  4. },
  5. "build": {
  6. "development": {
  7. "distribution": "store",
  8. "android": {
  9. "gradleCommand": ":app:assembleDebug"
  10. },
  11. "ios": {
  12. "buildConfiguration": "Debug",
  13. "image": "macos-monterey-12.1-xcode-13.2"
  14. }
  15. },
  16. "preview": {
  17. "distribution": "internal",
  18. "ios": {
  19. "buildConfiguration": "Debug",
  20. "image": "macos-monterey-12.1-xcode-13.2"
  21. }
  22. },
  23. "production": {
  24. "android": {
  25. "image": "latest"
  26. },
  27. "ios": {
  28. "buildConfiguration": "Release",
  29. "image": "macos-monterey-12.1-xcode-13.2"
  30. }
  31. }
  32. },
  33. "submit": {
  34. "production": {}
  35. }
  36. }