app.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "expo": {
  3. "name": "DingdongRider",
  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. "ios": {
  20. "supportsTablet": true,
  21. "bundleIdentifier": "com.izouma.dingdongRider",
  22. "buildNumber": "1.0.0",
  23. "infoPlist": {
  24. "UIBackgroundModes": ["audio", "location", "fetch"]
  25. }
  26. },
  27. "android": {
  28. "package": "com.izouma.dingdongRider",
  29. "versionCode": 1,
  30. "permissions": [
  31. "ACCESS_COARSE_LOCATION",
  32. "ACCESS_FINE_LOCATION",
  33. "CAMERA",
  34. "READ_EXTERNAL_STORAGE",
  35. "WRITE_EXTERNAL_STORAGE"
  36. ],
  37. "useNextNotificationsApi": true
  38. },
  39. "web": {
  40. "favicon": "./assets/images/favicon.png"
  41. },
  42. "description": "叮咚外卖骑手端"
  43. }
  44. }