app.json 654 B

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