app.json 801 B

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