eas.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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": "app-bundle",
  20. "gradleCommand": ":app:assembleRelease"
  21. },
  22. "distribution": "internal",
  23. "channel": "preview",
  24. "environment": "preview"
  25. },
  26. "production": {
  27. "autoIncrement": true,
  28. "channel": "production",
  29. "environment": "production"
  30. }
  31. },
  32. "submit": {
  33. "production": {
  34. "android": {
  35. "serviceAccountKeyPath": "./service-account-file.json",
  36. "track": "production"
  37. }
  38. }
  39. }
  40. }