app.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "darkmode": true,
  3. "pages": [
  4. "pages/home/home",
  5. "pages/params/params",
  6. "pages/settings/settings"
  7. ],
  8. "window": {
  9. "navigationBarTextStyle": "black",
  10. "navigationStyle": "custom"
  11. },
  12. "tabBar": {
  13. "color": "#64748b",
  14. "selectedColor": "#0f766e",
  15. "backgroundColor": "#ffffff",
  16. "borderStyle": "black",
  17. "list": [
  18. {
  19. "pagePath": "pages/home/home",
  20. "text": "首页",
  21. "iconPath": "assets/tab/home.png",
  22. "selectedIconPath": "assets/tab/home-active.png"
  23. },
  24. {
  25. "pagePath": "pages/params/params",
  26. "text": "参数",
  27. "iconPath": "assets/tab/params.png",
  28. "selectedIconPath": "assets/tab/params-active.png"
  29. },
  30. {
  31. "pagePath": "pages/settings/settings",
  32. "text": "设置",
  33. "iconPath": "assets/tab/settings.png",
  34. "selectedIconPath": "assets/tab/settings-active.png"
  35. }
  36. ]
  37. },
  38. "permission": {
  39. "scope.userLocation": {
  40. "desc": "用于安卓系统扫描附近蓝牙设备"
  41. }
  42. },
  43. "style": "v2",
  44. "renderer": "skyline",
  45. "rendererOptions": {
  46. "skyline": {
  47. "defaultDisplayBlock": true,
  48. "defaultContentBox": true,
  49. "disableABTest": true,
  50. "sdkVersionBegin": "3.0.0",
  51. "sdkVersionEnd": "15.255.255"
  52. }
  53. },
  54. "componentFramework": "glass-easel",
  55. "sitemapLocation": "sitemap.json",
  56. "lazyCodeLoading": "requiredComponents"
  57. }