eas.json 478 B

12345678910111213141516171819202122232425262728
  1. {
  2. "cli": {
  3. "version": ">= 0.60.0"
  4. },
  5. "build": {
  6. "development": {
  7. "distribution": "internal",
  8. "android": {
  9. "gradleCommand": ":app:assembleDebug"
  10. }
  11. },
  12. "preview": {
  13. "distribution": "internal"
  14. },
  15. "production": {
  16. "android": {
  17. "image": "latest"
  18. },
  19. "ios": {
  20. "credentialsSource": "remote",
  21. "buildConfiguration": "Release"
  22. }
  23. }
  24. },
  25. "submit": {
  26. "production": {}
  27. }
  28. }