-
Notifications
You must be signed in to change notification settings - Fork 4k
/
mkdocs.yml
98 lines (90 loc) · 2.76 KB
/
mkdocs.yml
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
extra:
leak_canary:
release: '2.14'
next_release: '3.0-alpha-9'
social:
- icon: fontawesome/brands/github-alt
link: https://square.github.io/
- icon: fontawesome/brands/twitter
link: https://twitter.com/Piwai
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/questions/tagged/leakcanary?sort=active
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/joinsquare/
site_name: LeakCanary
site_url: https://square.github.io/leakcanary/
repo_name: LeakCanary
repo_url: https://github.com/square/leakcanary
edit_uri: edit/main/docs/
site_description: "A memory leak detection library for Android"
site_author: Square, Inc.
remote_branch: gh-pages
copyright: 'Copyright © 2015 Square, Inc.'
theme:
name: 'material'
custom_dir: 'docs/theme'
logo: 'images/logo.png'
icon:
repo: fontawesome/brands/github
favicon: 'images/logo.png'
palette:
primary: 'deep-orange'
accent: 'deep-purple'
features:
- tabs
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.emoji
- pymdownx.tabbed
- pymdownx.snippets
- tables
- admonition
plugins:
- search
- markdownextradata: {}
nav:
- 'Overview': index.md
- 'Getting Started': getting_started.md
- 'Fundamentals':
- 'Introduction': 'fundamentals.md'
- 'How LeakCanary works': 'fundamentals-how-leakcanary-works.md'
- 'Fixing a memory leak': 'fundamentals-fixing-a-memory-leak.md'
- 'LeakCanary at scale':
- 'Leak detection in UI tests': 'ui-tests.md'
- 'Uploading analysis results': 'uploading.md'
- 'LeakCanary for releases': 'leakcanary-for-releases.md'
- 'Help & Community':
- 'Code recipes': recipes.md
- 'FAQ': faq.md
- 'Support': support.md
- 'Upgrading to LeakCanary 2': upgrading-to-leakcanary-2.0.md
- 'Recorded Presentations': recorded-presentations.md
- 'Blog Articles': blog-articles.md
- 'Stack Overflow ⏏': https://stackoverflow.com/questions/tagged/leakcanary?sort=active
- 'Contributing':
- 'Code of Conduct': code_of_conduct.md
- 'Dev Environment': dev-env.md
- 'Releasing': releasing.md
- 'How to help': how_to_help.md
- 'Shark':
- 'Overview': shark.md
- 'Shark API': api/shark/index.md
- 'LeakCanary API': api/leakcanary/index.md
- 'Change Log': changelog.md
# Google Analytics. Add export LEAKCANARY_GOOGLE_ANALYTICS_KEY="UA-XXXXXXXXX-X" to your ~/.bashrc
google_analytics:
- !!python/object/apply:os.getenv ["LEAKCANARY_GOOGLE_ANALYTICS_KEY"]
- auto