-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
56 lines (56 loc) · 1.41 KB
/
app.json
File metadata and controls
56 lines (56 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"pages": [
"pages/index/index",
"pages/publish/publish",
"pages/profile/index",
"pages/settings/index",
"pages/video-detail/index",
"pages/login/login",
"pages/custom-card/index",
"pages/detail/index",
"pages/logs/logs",
"pages/search/search"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "小红书社区",
"navigationBarBackgroundColor": "#ffffff"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#333333",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "assets/images/home.png",
"selectedIconPath": "assets/images/home_selected.png"
},
{
"pagePath": "pages/publish/publish",
"iconPath": "assets/images/add.png",
"selectedIconPath": "assets/images/add_selected.png"
},
{
"pagePath": "pages/profile/index",
"iconPath": "assets/images/user.png",
"selectedIconPath": "assets/images/user_selected.png"
}
]
},
"usingComponents": {
},
"style": "v2",
"componentFramework": "glass-easel",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents",
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于发布笔记时添加位置"
}
},
"requiredPrivateInfos": [
"getLocation",
"chooseLocation"
]
}