eas.json 487 B

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