app.json 646 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "expo": {
  3. "name": "tropsCoach",
  4. "slug": "tropsCoach",
  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. "edgeToEdgeEnabled": true
  24. },
  25. "web": {
  26. "favicon": "./assets/favicon.png"
  27. }
  28. }
  29. }