app.json 1.1 KB

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