Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

app.json 899B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "expo": {
  3. "name": "lesson01",
  4. "slug": "lesson01",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/images/icon.png",
  8. "scheme": "myapp",
  9. "userInterfaceStyle": "automatic",
  10. "newArchEnabled": true,
  11. "ios": {
  12. "supportsTablet": true
  13. },
  14. "android": {
  15. "adaptiveIcon": {
  16. "foregroundImage": "./assets/images/adaptive-icon.png",
  17. "backgroundColor": "#ffffff"
  18. }
  19. },
  20. "web": {
  21. "bundler": "metro",
  22. "output": "static",
  23. "favicon": "./assets/images/favicon.png"
  24. },
  25. "plugins": [
  26. "expo-router",
  27. [
  28. "expo-splash-screen",
  29. {
  30. "image": "./assets/images/splash-icon.png",
  31. "imageWidth": 200,
  32. "resizeMode": "contain",
  33. "backgroundColor": "#ffffff"
  34. }
  35. ]
  36. ],
  37. "experiments": {
  38. "typedRoutes": true
  39. }
  40. }
  41. }