eas.json 974 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "cli": {
  3. "version": ">= 14.2.0",
  4. "appVersionSource": "remote"
  5. },
  6. "build": {
  7. "development": {
  8. "developmentClient": true,
  9. "distribution": "internal",
  10. "channel": "development",
  11. "environment": "development"
  12. },
  13. "preview": {
  14. "ios": {
  15. "simulator": false,
  16. "enterpriseProvisioning": "adhoc"
  17. },
  18. "android": {
  19. "buildType": "apk",
  20. "gradleCommand": ":app:assembleRelease"
  21. },
  22. "distribution": "internal",
  23. "channel": "preview",
  24. "environment": "preview"
  25. },
  26. "production": {
  27. "autoIncrement": true,
  28. "android": {
  29. "buildType": "apk"
  30. },
  31. "channel": "production",
  32. "environment": "production"
  33. }
  34. },
  35. "submit": {
  36. "production": {}
  37. }
  38. }