1
0

app.json 1.6 KB

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