app.json 1.1 KB

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