eas.json 859 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "cli": {
  3. "version": ">= 5.6.0"
  4. },
  5. "build": {
  6. "preview": {
  7. "channel": "development",
  8. "android": {
  9. "buildType": "apk"
  10. },
  11. "env": {
  12. "ENV": "development"
  13. }
  14. },
  15. "preview2": {
  16. "android": {
  17. "gradleCommand": ":app:assembleRelease"
  18. }
  19. },
  20. "preview3": {
  21. "developmentClient": true
  22. },
  23. "preview4": {
  24. "distribution": "internal"
  25. },
  26. "development": {
  27. "developmentClient": true,
  28. "distribution": "internal",
  29. "channel": "development",
  30. "env": {
  31. "ENV": "development"
  32. }
  33. },
  34. "production": {
  35. "channel": "production",
  36. "autoIncrement": true,
  37. "android": {
  38. "buildType": "app-bundle"
  39. },
  40. "env": {
  41. "ENV": "production"
  42. }
  43. }
  44. },
  45. "submit": {
  46. "production": {}
  47. }
  48. }