This repository has been archived by the owner on Sep 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
mkdocs.yml
556 lines (545 loc) · 25.9 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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
# Project information
site_name: Amplitude Developer Center
site_url: https://www.docs.developers.amplitude.com
site_author: Amplitude
site_description: >-
Developer resources for Amplitude's digital analytics platform.
# Repository
repo_name: amplitude-dev-center
repo_url: https://github.com/Amplitude-Developer-Docs/amplitude-dev-center
edit_uri: edit/main/docs/
# Copyright
copyright: Copyright © 2023 Amplitude - <a href="#__consent">Change cookie settings</a>
# Configuration
theme:
name: material
custom_dir: overrides
icon:
repo: fontawesome/brands/github
# Static files
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
language: en
features:
- content.code.copy # enables code copy to clipboard feature
- content.action.edit # adds edit icon to pages
- content.action.view # adds view page source icon to pages
#- announce.dismiss # this feature is perenially buggy, so keep it disabled unless necessary.
- content.code.annotate # enables code annotation feature
- content.tooltips #enables enhanced tooltips
- content.tabs.link #links tabs with the same name, so when one is clicked, the others on the same page focus on matching tabs
# - header.autohide
# - navigation.expand # expands everything in nav. Not enabled intentionally it's really overwhelming.
- navigation.instant #makes site act like a SPA. Preserves search index on navigation and saves a bunch of time. Keeps site snappy.
- navigation.path # enables breadcrumbs
- navigation.indexes # enables attaching a page to section head: the "index" pages
- navigation.sections # top-level sections are rendered in groups in the sidebar
- navigation.tabs # adds the top level menu tabs in the header bar.
# - navigation.tabs.sticky
- navigation.top # back to top button
- navigation.tracking # URL in the address bar is automatically updated with the active anchor as highlighted in the table of contents.
- search.highlight # highlights search term on page
- search.share # allows users to share a deeplink to search results
- search.suggest # enables search suggestions
# - toc.integrate #this is a really noisy feature. Disabled intentionally.
font: false # Prevents autoloading of google fonts, for privacy reasons.
favicon: assets/favicon.ico
logo: assets/logo.png
extra_css:
- stylesheets/extra.css # Amplitude Styles
extra_javascript:
- /javascripts/accessibe.js # Script for Accessibe. Don't remove without speaking to Legal
- https://unpkg.com/[email protected]/dist/tablesort.min.js # Tablesort
- /javascripts/tablesort.js #script for Tablesort feature
- /javascripts/anchor-copy.js #script for copying anchor links
- /javascripts/statuspage.js #script for status page embed
# Plugins
# When you add a plugin here, make sure the change is updated in insiders.mkdocs.yml and insiders.local.build.yml too.
plugins:
- search # the search plugin
- git-revision-date-localized # enables the git revision date functionality, compatible with macros plugin
- macros:
include_dir: macros
j2_block_start_string: '@{%'
j2_block_end_string: '%}'
j2_variable_start_string: '@{{'
j2_variable_end_string: '}}'
# Extensions
# When you add or change an extension here, mirror changes in insiders.mkdocs.yml.
markdown_extensions:
- admonition # enables 'callout' boxes
- abbr # Enables the ability to add a small tooltip to an element, by wrapping it with an abbr tag. Only plain text (no markup) is supported. Use with the "abbreviations" includes file
- attr_list # Enables adding HTML attributes and CSS classes to almost every Markdown inline- and block-level element with a special syntax.
- def_list # Enables definition lists (more commonly known as description lists – dl in HTML. https://squidfunk.github.io/mkdocs-material/reference/lists/#using-definition-lists
- footnotes # Enables adding inline syntax to create footnotes
- meta # enables page metadata
- md_in_html # enables writing Markdown inside of HTML. Required for Grids and a few other features.
- tables # Enables Markdown tables
- toc: # configures the page TOC (righ-side navigation)
permalink: true
title: "On this page"
toc_depth: 3
permalink_title: Link to this section
- pymdownx.arithmatex: # preserves LaTeX math equations for use with MathJax
generic: true
- pymdownx.betterem: # improves the detection of Markup to emphasize text with special characters (bold and italic text)
smart_enable: all
- pymdownx.caret # Enables superscripts
- pymdownx.details # Enables collapsible admonitions
- pymdownx.emoji: # Enables all sorts of emoji support
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons: # sets the folder for our custom svgs that can be used as icons/emojis
- overrides/.icons
- pymdownx.highlight: # Enables code block syntax highlighting
#anchor_linenums: true
use_pygments: true
- pymdownx.inlinehilite # Enables syntax highlighting of inline code blocks
- pymdownx.keys # Enables inline key display
- pymdownx.mark # used with carat and tilde to allow marking content (https://squidfunk.github.io/mkdocs-material/reference/formatting/#highlighting-text)
- pymdownx.snippets # Enables snippets (content reuse)
- pymdownx.smartsymbols # Enables converting some sequences of characters into their corresponding symbols
- pymdownx.superfences: # Enables nestable codeblocks
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed: # Enables content tabs
alternate_style: true
- pymdownx.tasklist: # Enables task lists
custom_checkbox: true
- pymdownx.tilde # enables strikthrough (<del> tags) and subscripts https://facelessuser.github.io/pymdown-extensions/extensions/tilde/
extra:
support_contact: https://amplitude.com
docs_home: /documentation-home
community: https://community.amplitude.com/?utm_source=devdocs&utm_medium=helpcontent&utm_campaign=devdocswebsite
product_updates: https://community.amplitude.com/product-updates?utm_source=devdocs&utm_medium=helpcontent&utm_campaign=devdocswebsite
help_site: https://help.amplitude.com
status_page: https://status.amplitude.com/
training_site: https://academy.amplitude.com/
postman_workspace: https://www.postman.com/amplitude-developer-docs/workspace/amplitude-developers/overview
report_issue: https://github.com/Amplitude-Developer-Docs/amplitude-dev-center/issues/new/?title=[Feedback]+{{page.title}}+-+{{page.url}}
getting_started_guide: https://docs.developers.amplitude.com/getting-started
sdk_quickstart: /data/sdks/sdk-quickstart/
more_resources: all-resources
status:
new: Recently added
deprecated: Deprecated
analytics:
provider: amplitude
consent:
cookies:
analytics: Amplitude Analytics
actions:
- accept
- manage
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
generator: false #hides the generated with text in the footer
# Navigation
nav:
- Documentation:
- Documentation Home: documentation-home.md
- Analytics:
- analytics/index.md
- Overview: analytics/index.md
- What is Amplitude Analytics?: analytics/what-is-amplitude.md
- Plan Your Set Up: analytics/plan-your-set-up.md
- Debugging Analytics: "data/debugger.md"
- SDKs: /../data/sdks/
- APIs: analytics/apis/index.md
- Advanced Topics:
- Custom Domain Proxy: analytics/domain-proxy.md
- Use AMP with Amplitude: analytics/use-amp-pages.md
- Data:
- data/index.md
- Overview: data/index.md
- Getting Started: "getting-started.md"
- Sources:
- Overview: data/sources.md
- Client-side vs Server-side: data/sources/client-side-vs-server-side.md
- Ampli:
- data/ampli/index.md
- data/ampli/cli.md
- data/ampli/sdk.md
- data/ampli/integrating-with-ci.md
- Source Control: data/ampli/git-workflow.md
- data/ampli/migration.md
- SDKs: data/sdks/sdk-overview.md
- Cloud Storage:
- Overview: data/source-cloud-storage-overview.md
- Amazon S3: data/sources/amazon-s3.md
- Google Cloud Storage: data/sources/google-cloud-storage.md
- Converter Configuration: data/converter-configuration-reference.md
- Warehouse:
- BigQuery: data/sources/bigquery.md
- Snowflake: data/sources/snowflake.md
- Other Sources:
- Overview: data/source-other-overview.md
- Ad Networks:
- Facebook Ads: data/sources/facebook-ads.md
- Google Ads: data/sources/google-ads.md
- Attribution:
- Adjust: data/sources/adjust.md
- Airbridge: data/sources/airbridge.md
- AppsFlyer: data/sources/appsflyer.md
- Branch: data/sources/branch.md
- Kochava: data/sources/kochava.md
- Singular: data/sources/singular.md
- CDP:
- mParticle: data/sources/mparticle.md
- Rudderstack: data/sources/rudderstack.md
- Segment: data/sources/segment.md
- Tealium: data/sources/tealium.md
- Collaboration:
- Tribe: data/sources/tribe.md
- Customer Engagement:
- Chameleon: data/sources/chameleon.md
- Cordial: data/sources/cordial.md
- Intercom: data/sources/intercom.md
- OneSignal: data/sources/onesignal.md
- Radar: data/sources/radar.md
- SendGrid: data/sources/sendgrid.md
- Userflow: data/sources/userflow.md
- Userguiding: data/sources/userguiding.md
- Bento: data/sources/bento.md
- Experimentation:
- Optimizely: data/sources/optimizely.md
- Split: data/sources/split.md
- Taplytics: data/sources/taplytics.md
- Lookup Tables:
- CSV: data/sources/lookup-table.md
- Marketing Analytics:
- Adobe:
- Adobe Analytics: data/sources/adobe-analytics.md
- Adobe Tag Manager: data/sources/adobe.md
- Google Tag Manager:
- data/sources/google-tag-manager/index.md
- Client-side: data/sources/google-tag-manager-client.md
- Server-side: data/sources/google-tag-manager-server.md
- Client-side (Legacy): data/sources/google-tag-manager-client-legacy.md
- Marketing Automation:
#- Airship: data/sources/airship.md
- Braze: data/sources/braze.md
- CleverTap: data/sources/clevertap.md
- HubSpot: data/sources/hubspot.md
- Iterable: data/sources/iterable.md
- Leanplum: data/sources/leanplum.md
- Mailchimp: data/sources/mailchimp.md
- MoEngage: data/sources/moengage.md
- Marketplace:
- Shopify: data/sources/shopify.md
- Other:
- Datazoom: data/sources/datazoom.md
- Kochava: data/sources/kochava.md
- Blitzllama: data/sources/blitzllama.md
- Privacy:
- MetaRouter: data/sources/metarouter.md
- Qualitative Feeback:
- Qualtrics: data/sources/qualtrics.md
- Sprig: data/sources/sprig.md
- Survicate: data/sources/survicate.md
- Reverse ETL:
- Census: data/sources/census.md
- Hightouch: data/sources/hightouch.md
- Sales:
- Salesforce: data/sources/salesforce-group.md
- Subscription Management:
- Adapty: data/sources/adapty.md
- Apphud: data/sources/apphud.md
- RevenueCat: data/sources/revenuecat.md
- Website:
- Convizit: data/sources/convizit.md
- Destinations:
- Overview: data/destinations.md
- Cloud Storage:
- Overview: data/destination-cloud-storage-overview.md
- Amazon S3: data/destinations/amazon-s3.md
- Google Cloud Storage: data/destinations/google-cloud-storage.md
- Warehouse:
- Overview: data/destination-warehouse-overview.md
- Redshift: data/destinations/redshift.md
- BigQuery: data/destinations/bigquery.md
- Snowflake: data/destinations/snowflake.md
- Snowflake Data Share: data/destinations/snowflake-data-share.md
- Event Streaming:
- Overview: data/destination-event-streaming-overview.md
- Appfit: data/destinations/appfit-event-streaming.md
- AppsFlyer: data/destinations/appsflyer.md
- Bento: data/destinations/bento-event-streaming.md
- Branch: data/destinations/branch.md
- Braze: data/destinations/braze.md
- Customer.io: data/destinations/customerio.md
- CleverTap: data/destinations/clevertap-event-streaming.md
- Extole: data/destinations/extole-event-streaming.md
- Fivetran: data/destinations/fivetran-event-forwarding.md
- Fullstory: data/destinations/fullstory-event-streaming.md
- Google Analytics 4 (iOS/Android): data/destinations/google-analytics-4-firebase.md
- Google Analytics 4 (Web): data/destinations/google-analytics-4-gtag.md
- Google Ads: data/destinations/google-ads-event-streaming.md
- Google Pub/Sub: data/destinations/google-pub-sub.md
- Google Tag Manager: data/destinations/google-tag-manager-event-streaming.md
- Hotjar: data/destinations/hotjar-event-streaming.md
- Hubspot: data/destinations/hubspot-event-streaming.md
- Intercom: data/destinations/intercom.md
- Iterable: data/destinations/iterable.md
- Kameleoon: data/destinations/kameleoon-event-streaming.md
- Kinesis: data/destinations/kinesis-data-stream.md
- Kinesis Firehose: data/destinations/kinesis-firehose.md
- Kochava (install): data/destinations/kochava-event-streaming.md
- Kochava (post-installs): data/destinations/kochava-event-streaming-post-installs.md
- Lantern: data/destinations/lantern-event-streaming.md
- Mailchimp: data/destinations/mailchimp-event-streaming.md
- Meta Pixel: data/destinations/meta-pixel.md
- MoEngage: data/destinations/moengage-event-streaming.md
- Movable Ink: data/destinations/movable-ink-event-streaming.md
- Moloco: data/destinations/moloco-event-streaming.md
- Planhat: data/destinations/planhat-event-streaming.md
- Plotline: data/destinations/plotline-event-streaming.md
- Pushwoosh: data/destinations/pushwoosh-event-streaming.md
- Salesforce Marketing Cloud: data/destinations/marketing-cloud-event-streaming.md
- Statsig: data/destinations/statsig.md
- Toplyne: data/destinations/toplyne.md
- Userlist: data/destinations/userlist-event-streaming.md
- Webhooks: data/destinations/webhooks-streaming.md
- Cohorts:
- Overview: data/destination-cohort-overview.md
- 1FLOW: data/destinations/1flow-cohort.md
- Airship: data/destinations/airship-cohort.md
- Amazon S3: data/destinations/amazon-s3-cohort.md
- Appcues: data/destinations/appcues-cohort.md
- AppsFlyer: data/destinations/appsflyer-cohort.md
- Apxor: data/destinations/apxor-cohort.md
- Blitzllama: data/destinations/blitzllama-cohort.md
- Bento: data/destinations/bento-cohort.md
- Braze: data/destinations/braze-cohort.md
- CleverTap: data/destinations/clevertap-cohort.md
- Cohort Webhooks: data/destinations/cohort-webhooks.md
- Cordial: data/destinations/cordial-cohort.md
- Customer.io: data/destinations/customerio-cohort.md
- Enterpret: data/destinations/enterpret-cohort.md
- Facebook Ads: data/destinations/facebook-cohort.md
- Google Ads: data/destinations/google-ads-cohort.md
- HubSpot: data/destinations/hubspot-cohort.md
- Infobip: data/destinations/infobip-cohort.md
- Intercom: data/destinations/intercom-cohort.md
- Insider: data/destinations/insider-cohort.md
- Iterable: data/destinations/iterable-cohort.md
- Klaviyo: data/destinations/klaviyo-cohort.md
- LaunchDarkly: data/destinations/launchdarkly-cohort.md
- Leanplum: data/destinations/leanplum-cohort.md
- Mailchimp: data/destinations/mailchimp-cohort.md
- Marketo: data/destinations/marketo-cohort.md
- Marketo Static List: data/destinations/marketo-static-list-cohort.md
- Maze: data/destinations/maze-cohort.md
- MoEngage: data/destinations/moengage-cohort.md
- Netcore Cloud: data/destinations/netcore-cohort.md
- Notivize: data/destinations/notivize-cohort.md
- OneSignal: data/destinations/onesignal-cohort.md
- Plotline: data/destinations/plotline-cohort.md
- Pushwoosh: data/destinations/pushwoosh-cohort.md
- Productboard: data/destinations/productboard-cohort.md
- Qualtrics: data/destinations/qualtrics-cohort.md
- Salesforce Marketing V1: data/destinations/marketing-cloud-cohort.md
- Salesforce Marketing V2: data/destinations/marketing-cloud-cohort-v2.md
- Sendgrid: data/destinations/sendgrid-cohort.md
- Split: data/destinations/split-cohort.md
- Segment: data/destinations/segment-cohort.md
- Snapchat Ads: data/destinations/snapchat-ads-cohort.md
- Statsig: data/destinations/statsig-cohort.md
- Talon.One: data/destinations/talonone-cohort.md
- TheTradeDesk: data/destinations/thetradedesk-cohort.md
- TikTok: data/destinations/tiktok-cohort.md
- unitQ: data/destinations/unitQ-cohort.md
- Userflow: data/destinations/userflow-cohort.md
- Userlist: data/destinations/userlist-cohort.md
- User.com: data/destinations/user.com-cohort.md
- Webengage: data/destinations/webengage-cohort.md
- Zeda.io: data/destinations/zeda.io-cohort.md
- Profile API:
- Moveable Ink: data/destinations/moveable-ink-profile-api.md
- Group Property:
- Salesforce: data/destinations/salesforce-group-export.md
- Privacy and PII:
- Overview: data/pii.md
- DataGrail: data/pii/datagrail.md
- Osano: data/pii/osano.md
- Transcend: data/pii/transcend.md
- Time-to-Live: data/ttl-configuration.md
- Experiment:
- experiment/index.md
- Overview: experiment/index.md
- General:
- experiment/general/data-model.md
- Evaluation:
- Implementation: experiment/general/evaluation/implementation.md
- experiment/general/evaluation/remote-evaluation.md
- Local Evaluation: experiment/general/evaluation/local-evaluation.md
- experiment/general/performance-and-caching.md
- experiment/general/exposure-tracking.md
- experiment/general/flag-dependencies.md
- Guides:
- Getting Started:
- experiment/guides/getting-started/index.md
- experiment/guides/getting-started/create-a-deployment.md
- experiment/guides/getting-started/create-a-flag.md
- experiment/guides/getting-started/fetch-variants.md
- experiment/guides/getting-started/track-exposure.md
- experiment/guides/server-side-rendering.md
- experiment/guides/create-local-evaluation-flag.md
- Troubleshooting:
- Variant Jumping: experiment/guides/troubleshooting/variant-jumping.md
- Sample Ratio Mismatch (SRM): experiment/guides/troubleshooting/sample-ratio-mismatch.md
- Exposures without Assignments: experiment/guides/troubleshooting/exposures-without-assignments.md
- Restarting experiments (Beta): experiment/guides/troubleshooting/restarting-experiments.md
- SDKs:
- JavaScript SDK: experiment/sdks/javascript-sdk.md
- Android SDK: experiment/sdks/android-sdk.md
- iOS SDK: experiment/sdks/ios-sdk.md
- React Native SDK: experiment/sdks/react-native-sdk.md
- Node.js SDK: experiment/sdks/nodejs-sdk.md
- Ruby SDK: experiment/sdks/ruby-sdk.md
- JVM SDK: experiment/sdks/jvm-sdk.md
- Go SDK: experiment/sdks/go-sdk.md
- Python SDK: experiment/sdks/python-sdk.md
- Evaluation Proxy: experiment/infra/evaluation-proxy.md
- Maintenance:
- React Native SDK: experiment/sdks/react-native-sdk-legacy.md
- REST APIs:
- Evaluation API: experiment/apis/evaluation-api.md
- Management API:
- experiment/apis/management-api/index.md
- Flags: experiment/apis/management-api/flags.md
- Experiments: experiment/apis/management-api/experiments.md
- Deployments: experiment/apis/management-api/deployments.md
- Guides:
- guides/index.md
- Accounts Guide: guides/accounts-instrumentation-guide.md
- Amplitude Keys Guide: guides/amplitude-keys-guide.md
- Data Backfill Guide: analytics/data-backfill-guide.md
- Segment Migration Guide: guides/segment-migration-guide.md
- Cookies and Consent Management: guides/cookies-consent-mgmt-guide.md
- APIs:
- analytics/apis/index.md
- Find your API credentials: analytics/find-api-credentials.md
#- Authentication: analytics/apis/authentication.md
#- Limits: analytics/apis/rate-limits.md
#- Use Postman with the APIs: analytics/apis/rate-limits.md
- API References:
- Overview: analytics/api-reference-overview.md
- Attribution: analytics/apis/attribution-api.md
- Batch Event Upload: analytics/apis/batch-event-upload-api.md
- Behavioral Cohorts: analytics/apis/behavioral-cohorts-api.md
- CCPA DSAR: analytics/apis/ccpa-dsar-api.md
- Chart Annotations: analytics/apis/chart-annotations-api.md
- Dashboard: analytics/apis/dashboard-rest-api.md
- Event Streaming Metrics: analytics/apis/event-streaming-metrics-summary-api.md
- Export: analytics/apis/export-api.md
- Group Identify: analytics/apis/group-identify-api.md
- HTTP V2:
- Quickstart: analytics/apis/http-v2-api-quickstart.md
- Reference: analytics/apis/http-v2-api.md
- Identify: analytics/apis/identify-api.md
- Lookup Tables: analytics/apis/lookup-tables-api.md
- Releases: analytics/apis/releases-api.md
- SCIM: analytics/apis/scim-api.md
- Taxonomy: analytics/apis/taxonomy-api.md
- User Mapping (Aliasing): analytics/apis/aliasing-api.md
- User Privacy: analytics/apis/user-privacy-api.md
- User Profile: analytics/apis/user-profile-api.md
- SDKs:
- data/sdks/index.md
- Quickstart Guide: data/sdks/sdk-quickstart.md
- SDK Architecture: data/sdks/sdk-architecture.md
- Ampli: data/sdks/ampli-overview.md
- SDK References:
- SDK Catalog: data/sdks/sdk-overview.md
- Browser:
- data/sdks/browser-2/index.md
- v2.0:
- data/sdks/browser-2/index.md
- Ampli Codegen: data/sdks/browser-2/ampli.md
- v1.0:
- data/sdks/typescript-browser/index.md
- Ampli Codegen: data/sdks/typescript-browser/ampli.md
- Migration Guide: data/sdks/browser-2/migration.md
- Node.js:
- data/sdks/typescript-node/index.md
- Ampli Codegen: data/sdks/typescript-node/ampli.md
- Android:
- data/sdks/android-kotlin/index.md
- Ampli Codegen: data/sdks/android-kotlin/ampli.md
- iOS:
- data/sdks/ios/index.md
- Ampli Codegen: data/sdks/ios/ampli.md
- Migration Guide: data/sdks/ios-swift/migration.md
- iOS (Beta):
- data/sdks/ios-swift/index.md
- Ampli Codegen: data/sdks/ios-swift/ampli.md
- Java:
- data/sdks/java/index.md
- Ampli Codegen: data/sdks/java/ampli.md
- React Native:
- data/sdks/typescript-react-native/index.md
- Ampli Codegen: data/sdks/typescript-react-native/ampli.md
- Flutter:
- data/sdks/flutter/index.md
- Python:
- data/sdks/python/index.md
- Ampli Codegen: data/sdks/python/ampli.md
- Unity:
- data/sdks/unity/index.md
- Unreal:
- data/sdks/unreal/index.md
- Go:
- data/sdks/go/index.md
- Ampli Codegen: data/sdks/go/ampli.md
- Maintenance SDKs:
- Browser:
- data/sdks/javascript/index.md
- JavaScript SDK:
- data/sdks/javascript/index.md
- Ampli Codegen: data/sdks/javascript/ampli.md
- Migration Guide: data/sdks/typescript-browser/migration.md
- Marketing Analytics Browser:
- data/sdks/marketing-analytics-browser/index.md
- Migration Guide: data/sdks/marketing-analytics-browser/migration.md
- Android:
- data/sdks/android/index.md
- Ampli Codegen: data/sdks/android/ampli.md
- Migration Guide: data/sdks/android-kotlin/migration.md
- React Native:
- data/sdks/react-native/index.md
- Ampli Codegen: data/sdks/react-native/ampli.md
- Migration Guide: data/sdks/typescript-react-native/migration.md
- Node.js:
- data/sdks/node/index.md
- Ampli Codegen: data/sdks/node/ampli.md
- Migration Guide: data/sdks/typescript-node/migration.md
- Other Topics:
- Dynamic Configuration: data/dynamic-configuration.md
- Plugins: data/sdk-plugins.md
- Middleware: data/sdk-middleware.md
- Troubleshooting and debugging: data/sdk-troubleshooting-and-debugging.md
- Maintenance and support: data/sdks/sdk-maintenance-and-support.md
- Tutorials:
- Migrating from Google Analytics:
- data/tutorials/migrating-from-google-analytics/index.md
- Partners:
- partners/index.md
- Integrate with Amplitude:
- partners/integration-portal.md
- Event Ingestion Integration: partners/event-ingestion-integration-guide.md
- Cohort Syncing Integration: partners/cohort-integration-guide.md
- Event Streaming Integration: partners/event-streaming-integration-guide.md
- partners/sending-cohorts.md
- Resources:
- all-resources.md