eas.json 772 B

12345678910111213141516171819202122232425262728293031
  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. }
  27. },
  28. "submit": {
  29. "production": {}
  30. }
  31. }