eas.json 687 B

1234567891011121314151617181920212223242526272829303132333435
  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. },
  12. "preview": {
  13. "ios": {
  14. "simulator": false,
  15. "enterpriseProvisioning": "adhoc"
  16. },
  17. "android": {
  18. "buildType": "apk",
  19. "gradleCommand": ":app:assembleRelease"
  20. },
  21. "distribution": "internal",
  22. "channel": "preview"
  23. },
  24. "production": {
  25. "autoIncrement": true,
  26. "android": {
  27. "buildType": "apk"
  28. },
  29. "channel": "production"
  30. }
  31. },
  32. "submit": {
  33. "production": {}
  34. }
  35. }