app.json 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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": "#673AB7",
  13. "androidStatusBar": {
  14. "hidden": "true",
  15. "barStyle": "light-content",
  16. "backgroundColor": "#673AB7",
  17. "translucent": "false"
  18. },
  19. "version": "1.0.0",
  20. "orientation": "portrait",
  21. "icon": "./assets/icon.png",
  22. "splash": {
  23. "image": "./assets/logo.png",
  24. "resizeMode": "contain",
  25. "backgroundColor": "#673AB7"
  26. },
  27. "updates": {
  28. "fallbackToCacheTimeout": 0
  29. },
  30. "assetBundlePatterns": [
  31. "**/*"
  32. ],
  33. "ios": {
  34. "supportsTablet": true
  35. },
  36. "packagerOpts": {
  37. "config": "metro.config.js",
  38. "sourceExts": [
  39. "js",
  40. "json",
  41. "ts",
  42. "tsx",
  43. "vue"
  44. ]
  45. }
  46. }
  47. }