app.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "expo": {
  3. "name": "asios",
  4. "slug": "asios",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/images/icon.png",
  8. "scheme": "asios",
  9. "userInterfaceStyle": "automatic",
  10. "newArchEnabled": true,
  11. "ios": {
  12. "supportsTablet": true
  13. },
  14. "android": {
  15. "adaptiveIcon": {
  16. "backgroundColor": "#E6F4FE",
  17. "foregroundImage": "./assets/images/android-icon-foreground.png",
  18. "backgroundImage": "./assets/images/android-icon-background.png",
  19. "monochromeImage": "./assets/images/android-icon-monochrome.png"
  20. },
  21. "edgeToEdgeEnabled": true,
  22. "predictiveBackGestureEnabled": false
  23. },
  24. "web": {
  25. "output": "static",
  26. "favicon": "./assets/images/favicon.png"
  27. },
  28. "plugins": [
  29. "expo-router",
  30. [
  31. "expo-splash-screen",
  32. {
  33. "image": "./assets/images/splash-icon.png",
  34. "imageWidth": 200,
  35. "resizeMode": "contain",
  36. "backgroundColor": "#ffffff",
  37. "dark": {
  38. "backgroundColor": "#000000"
  39. }
  40. }
  41. ]
  42. ],
  43. "experiments": {
  44. "typedRoutes": true,
  45. "reactCompiler": true
  46. }
  47. }
  48. }