app.json 901 B

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