app.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "expo": {
  3. "name": "叮咚外卖骑手端",
  4. "slug": "DingdongRider",
  5. "version": "1.0.0",
  6. "orientation": "portrait",
  7. "icon": "./assets/images/icon.png",
  8. "scheme": "myapp",
  9. "userInterfaceStyle": "automatic",
  10. "splash": {
  11. "image": "./assets/images/splash.png",
  12. "resizeMode": "contain",
  13. "backgroundColor": "#FFC21C"
  14. },
  15. "updates": {
  16. "fallbackToCacheTimeout": 0
  17. },
  18. "assetBundlePatterns": [
  19. "**/*"
  20. ],
  21. "ios": {
  22. "supportsTablet": true,
  23. "bundleIdentifier": "com.izouma.dingdongRider",
  24. "buildNumber": "1.0.0",
  25. "infoPlist": {
  26. "UIBackgroundModes": [
  27. "audio",
  28. "location",
  29. "fetch"
  30. ]
  31. }
  32. },
  33. "android": {
  34. "package": "com.izouma.dingdongRider",
  35. "versionCode": 1,
  36. "permissions": [
  37. "ACCESS_COARSE_LOCATION",
  38. "ACCESS_FINE_LOCATION",
  39. "CAMERA",
  40. "READ_EXTERNAL_STORAGE",
  41. "WRITE_EXTERNAL_STORAGE"
  42. ],
  43. "useNextNotificationsApi": true
  44. },
  45. "web": {
  46. "favicon": "./assets/images/favicon.png"
  47. },
  48. "description": "叮咚外卖骑手端"
  49. }
  50. }