app.json 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "expo": {
  3. "name": "Diary",
  4. "slug": "Diary",
  5. "privacy": "public",
  6. "sdkVersion": "36.0.0",
  7. "platforms": [
  8. "ios",
  9. "android",
  10. "web"
  11. ],
  12. "androidStatusBarColor": "#334393",
  13. "androidStatusBar": {
  14. "barStyle": "light-content",
  15. "backgroundColor": "#334393"
  16. },
  17. "version": "1.0.0",
  18. "orientation": "portrait",
  19. "icon": "./assets/icon.png",
  20. "splash": {
  21. "image": "./assets/splash.png",
  22. "resizeMode": "contain",
  23. "backgroundColor": "#ffffff"
  24. },
  25. "updates": {
  26. "fallbackToCacheTimeout": 0
  27. },
  28. "assetBundlePatterns": [
  29. "**/*"
  30. ],
  31. "ios": {
  32. "supportsTablet": true
  33. },
  34. "packagerOpts": {
  35. "config": "metro.config.js",
  36. "sourceExts": [
  37. "js",
  38. "json",
  39. "ts",
  40. "tsx",
  41. "vue"
  42. ]
  43. }
  44. }
  45. }