app.json 711 B

12345678910111213141516171819202122232425
  1. {
  2. "pages": [
  3. "pages/map/map",
  4. "pages/index/index",
  5. "pages/logs/logs"
  6. ],
  7. "window": {
  8. "navigationBarTextStyle": "black",
  9. "navigationBarTitleText": "CMR Mini",
  10. "navigationBarBackgroundColor": "#ffffff"
  11. },
  12. "permission": {
  13. "scope.userLocation": {
  14. "desc": "用于获取当前位置并为后台持续定位授权"
  15. },
  16. "scope.userLocationBackground": {
  17. "desc": "用于后台持续获取当前位置并在地图上显示GPS点"
  18. }
  19. },
  20. "requiredBackgroundModes": ["location"],
  21. "requiredPrivateInfos": ["startLocationUpdateBackground", "onLocationChange"],
  22. "style": "v2",
  23. "componentFramework": "glass-easel",
  24. "lazyCodeLoading": "requiredComponents"
  25. }