app.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "expo": {
  3. "name": "叮咚外卖用户端",
  4. "slug": "DingdongClient",
  5. "platforms": [
  6. "ios",
  7. "android",
  8. "web"
  9. ],
  10. "version": "1.0.0",
  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. },
  30. "android": {
  31. "package": "com.izouma.dingdongClient",
  32. "versionCode": 1,
  33. "permissions": [
  34. "CAMERA",
  35. "READ_INTERNAL_STORAGE",
  36. "WRITE_INTERNAL_STORAGE",
  37. "READ_EXTERNAL_STORAGE",
  38. "WRITE_EXTERNAL_STORAGE"
  39. ]
  40. },
  41. "androidStatusBar": {
  42. "backgroundColor": "#FFC21C",
  43. "translucent": false
  44. },
  45. "web": {
  46. "favicon": "./assets/images/favicon.png"
  47. },
  48. "description": "叮咚外卖用户端平台"
  49. }
  50. }