app.json 695 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "expo": {
  3. "name": "template",
  4. "slug": "template",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/icon.png",
  8. "userInterfaceStyle": "light",
  9. "scheme": "template",
  10. "splash": {
  11. "image": "./assets/splash.png",
  12. "resizeMode": "contain",
  13. "backgroundColor": "#ffffff"
  14. },
  15. "assetBundlePatterns": [
  16. "**/*"
  17. ],
  18. "ios": {
  19. "supportsTablet": true
  20. },
  21. "android": {
  22. "adaptiveIcon": {
  23. "foregroundImage": "./assets/adaptive-icon.png",
  24. "backgroundColor": "#ffffff"
  25. }
  26. },
  27. "web": {
  28. "favicon": "./assets/favicon.png"
  29. },
  30. "plugins": [
  31. "expo-router"
  32. ]
  33. }
  34. }