app.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "expo": {
  3. "name": "叮咚外卖用户端",
  4. "slug": "DingdongClient",
  5. "platforms": [
  6. "ios",
  7. "android",
  8. "web"
  9. ],
  10. "version": "1.0.1",
  11. "orientation": "portrait",
  12. "icon": "./assets/images/icon.png",
  13. "scheme": "myapp",
  14. "splash": {
  15. "image": "./assets/images/splash.png",
  16. "resizeMode": "contain",
  17. "backgroundColor": "#FFC21C"
  18. },
  19. "backgroundColor": "#fff",
  20. "primaryColor": "#FFC21C",
  21. "updates": {
  22. "fallbackToCacheTimeout": 0
  23. },
  24. "assetBundlePatterns": [
  25. "**/*"
  26. ],
  27. "ios": {
  28. "supportsTablet": true,
  29. "bundleIdentifier": "com.izouma.dingdongClient",
  30. "buildNumber": "1.0.0"
  31. },
  32. "android": {
  33. "package": "com.izouma.dingdongClient",
  34. "versionCode": 1,
  35. "permissions": [
  36. "CAMERA",
  37. "READ_INTERNAL_STORAGE",
  38. "WRITE_INTERNAL_STORAGE",
  39. "READ_EXTERNAL_STORAGE",
  40. "WRITE_EXTERNAL_STORAGE"
  41. ]
  42. },
  43. "androidStatusBar": {
  44. "backgroundColor": "#FFC21C"
  45. },
  46. "web": {
  47. "favicon": "./assets/images/favicon.png"
  48. },
  49. "description": "叮咚外卖用户端平台"
  50. }
  51. }