app.json 1017 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "expo": {
  3. "name": "Dingdong",
  4. "slug": "Dingdong",
  5. "platforms": [
  6. "android"
  7. ],
  8. "version": "1.0.0",
  9. "orientation": "portrait",
  10. "icon": "./assets/images/icon.png",
  11. "scheme": "myapp",
  12. "splash": {
  13. "image": "./assets/images/splash.png",
  14. "resizeMode": "contain",
  15. "backgroundColor": "#FFC21C"
  16. },
  17. "backgroundColor": "#fff",
  18. "primaryColor": "#FFC21C",
  19. "updates": {
  20. "fallbackToCacheTimeout": 0
  21. },
  22. "assetBundlePatterns": [
  23. "**/*"
  24. ],
  25. "ios": {
  26. "supportsTablet": true
  27. },
  28. "android": {
  29. "package": "com.izouma.dingdong",
  30. "versionCode": 1,
  31. "permissions": [
  32. "CAMERA",
  33. "READ_INTERNAL_STORAGE",
  34. "WRITE_INTERNAL_STORAGE",
  35. "READ_EXTERNAL_STORAGE",
  36. "WRITE_EXTERNAL_STORAGE"
  37. ]
  38. },
  39. "androidStatusBar": {
  40. "backgroundColor": "#FFC21C",
  41. "translucent": false
  42. },
  43. "description": "叮咚外卖测试版",
  44. "sdkVersion": "37.0.0"
  45. }
  46. }