app.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "expo": {
  3. "name": "Pocket Diary",
  4. "slug": "https://git.kansk-tc.ru/the_Exi1e/diary-app",
  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/logo.png",
  22. "splash": {
  23. "image": "./assets/logo.png",
  24. "resizeMode": "contain",
  25. "backgroundColor": "#fff"
  26. },
  27. "updates": {
  28. "fallbackToCacheTimeout": 0
  29. },
  30. "assetBundlePatterns": [
  31. "**/*"
  32. ],
  33. "ios": {
  34. "supportsTablet": true
  35. },
  36. "android": {
  37. "package": "com.the_exile.pocket_diary",
  38. "versionCode": 1
  39. },
  40. "packagerOpts": {
  41. "config": "metro.config.js",
  42. "sourceExts": [
  43. "js",
  44. "json",
  45. "ts",
  46. "tsx",
  47. "vue"
  48. ]
  49. }
  50. }
  51. }