eas.json 850 B

12345678910111213141516171819202122232425262728293031323334
  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. }
  30. },
  31. "submit": {
  32. "production": {}
  33. }
  34. }