eas.json 750 B

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