-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.json
executable file
·151 lines (135 loc) · 4 KB
/
app.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"pages": [
"pages/portal/index",
"pages/portal/about",
"pages/portal/policies",
"pages/users/index",
"pages/users/list",
"pages/users/likes",
"pages/users/dislikes",
"pages/users/following",
"pages/users/blocking",
"pages/groups/index",
"pages/groups/list",
"pages/groups/likes",
"pages/groups/dislikes",
"pages/groups/following",
"pages/groups/blocking",
"pages/groups/detail",
"pages/hashtags/index",
"pages/hashtags/list",
"pages/hashtags/likes",
"pages/hashtags/dislikes",
"pages/hashtags/following",
"pages/hashtags/blocking",
"pages/hashtags/detail",
"pages/geotags/index",
"pages/geotags/list",
"pages/geotags/likes",
"pages/geotags/dislikes",
"pages/geotags/following",
"pages/geotags/blocking",
"pages/geotags/detail",
"pages/posts/index",
"pages/posts/list",
"pages/posts/likes",
"pages/posts/dislikes",
"pages/posts/following",
"pages/posts/blocking",
"pages/posts/detail",
"pages/comments/index",
"pages/comments/list",
"pages/comments/likes",
"pages/comments/dislikes",
"pages/comments/following",
"pages/comments/blocking",
"pages/comments/detail",
"pages/timelines/index",
"pages/timelines/posts",
"pages/timelines/comments",
"pages/timelines/user-posts",
"pages/timelines/user-comments",
"pages/timelines/group-posts",
"pages/timelines/group-comments",
"pages/timelines/hashtag-posts",
"pages/timelines/hashtag-comments",
"pages/timelines/geotag-posts",
"pages/timelines/geotag-comments",
"pages/nearby/index",
"pages/nearby/posts",
"pages/nearby/comments",
"pages/notifications/index",
"pages/conversations/index",
"pages/conversations/messages",
"pages/me/login/index",
"pages/me/login/check-sign",
"pages/me/login/oauth-website",
"pages/me/index",
"pages/me/extcredits",
"pages/me/wallet",
"pages/me/drafts",
"pages/me/users",
"pages/me/settings",
"pages/search/index",
"pages/editor/index",
"pages/profile/posts",
"pages/profile/comments",
"pages/profile/interactions/likers",
"pages/profile/interactions/dislikers",
"pages/profile/interactions/followers",
"pages/profile/interactions/blockers",
"pages/profile/interactions/followers-you-follow",
"pages/profile/likes/users",
"pages/profile/likes/groups",
"pages/profile/likes/hashtags",
"pages/profile/likes/geotags",
"pages/profile/likes/posts",
"pages/profile/likes/comments",
"pages/profile/dislikes/users",
"pages/profile/dislikes/groups",
"pages/profile/dislikes/hashtags",
"pages/profile/dislikes/geotags",
"pages/profile/dislikes/posts",
"pages/profile/dislikes/comments",
"pages/profile/following/users",
"pages/profile/following/groups",
"pages/profile/following/hashtags",
"pages/profile/following/geotags",
"pages/profile/following/posts",
"pages/profile/following/comments",
"pages/profile/blocking/users",
"pages/profile/blocking/groups",
"pages/profile/blocking/hashtags",
"pages/profile/blocking/geotags",
"pages/profile/blocking/posts",
"pages/profile/blocking/comments",
"sdk/extensions/webview"
],
"entryPagePath": "pages/portal/index",
"window": {
"navigationStyle": "custom",
"navigationBarBackgroundColor": "@navBgColor",
"navigationBarTextStyle": "@navTxtStyle",
"backgroundColor": "@bgColor",
"backgroundTextStyle": "@bgTxtStyle",
"backgroundColorTop": "@bgColorTop",
"backgroundColorBottom": "@bgColorBottom"
},
"style": "v2",
"renderer": "skyline",
"rendererOptions": {
"skyline": {
"defaultDisplayBlock": true,
"defaultContentBox": true,
"disableABTest": true
}
},
"componentFramework": "glass-easel",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents",
"darkmode": true,
"themeLocation": "theme.json",
"requiredPrivateInfos": [
"chooseLocation"
]
}