app.json 649 B

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