app.json 562 B

12345678910111213141516171819202122
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/takePhoto/takePhoto",
  5. "pages/cachePage/cachePage"
  6. ],
  7. "window": {
  8. "backgroundColor": "#F6F6F6",
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#F6F6F6",
  11. "navigationBarTitleText": "云开发 QuickStart",
  12. "navigationBarTextStyle": "black",
  13. "navigationStyle": "custom"
  14. },
  15. "permission": {
  16. "scope.userLocation": {
  17. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  18. }
  19. },
  20. "sitemapLocation": "sitemap.json",
  21. "style": "v2"
  22. }