eas.json 830 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. "android": {
  37. "buildType": "app-bundle"
  38. },
  39. "env": {
  40. "ENV": "production"
  41. }
  42. }
  43. },
  44. "submit": {
  45. "production": {}
  46. }
  47. }