app.json 549 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "expo": {
  3. "name": "reactRouter",
  4. "slug": "reactRouter",
  5. "platforms": [
  6. "ios",
  7. "android",
  8. "web"
  9. ],
  10. "version": "1.0.0",
  11. "orientation": "portrait",
  12. "icon": "./assets/images/icon.png",
  13. "scheme": "myapp",
  14. "splash": {
  15. "image": "./assets/images/splash.png",
  16. "resizeMode": "contain",
  17. "backgroundColor": "#ffffff"
  18. },
  19. "updates": {
  20. "fallbackToCacheTimeout": 0
  21. },
  22. "assetBundlePatterns": [
  23. "**/*"
  24. ],
  25. "ios": {
  26. "supportsTablet": true
  27. }
  28. }
  29. }