diff --git a/docs/mma.md b/docs/mma.md index 4633a5431..f41a875db 100644 --- a/docs/mma.md +++ b/docs/mma.md @@ -103,10 +103,33 @@ Since Device ID is a random UUID, Leanplum can't map the device to any know Clie User Attributes --------------- -"default_browser": A string containing the name of the default browser if property of Mozilla or an empty string -"focus_installed": A boolean indicated that Firefox Focus is installed -"klar_installed": A boolean indicated that Firefox Klar is installed -"fennec_installed": A boolean indicated that Fennec is installed + + + + + + + + + + + + + + + + + + + + + + + + + + +
KeyDescriptionData Review
`default_browser`A string containing the name of the default browser if property of Mozilla or an empty string#3459
`focus_installed`A boolean indicated that Firefox Focus is installed#3459
`klar_installed`A boolean indicated that Firefox Klar is installed#3459
`fennec_installed`A boolean indicated that Fennec is installed#3459
Events ------- @@ -117,41 +140,43 @@ Default value for event value is 0.0. Default value for event info is empty stri Here is the list of current Events sent, which can be found here in the code base: https://github.com/mozilla-mobile/fenix/blob/master/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt -The first launch after install -~~~~ -{ - "event": "E_Opened_App_FirstRun" -} -~~~~ - -Whenever the App is launched. -~~~~ -{ - "event": "E_Opened_App" -} -~~~~ - -The user interacts with search url area. -~~~~ -{ - "event": "E_Interact_With_Search_URL_Area" -} -~~~~ - -The user opened a bookmark -~~~~ -{ - "event": "E_Opened_Bookmark" -} -~~~~ - -The user removed a bookmark -~~~~ -{ - "event": "E_Remove_Bookmark" -} -~~~~ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EventDescriptionData Review
`E_Opened_App_FirstRun`The first launch after install#3459
`E_Opened_App`Whenever the App is launched.#3459
`E_Interact_With_Search_URL_Area`The user interacts with search url area.#3459
`E_Opened_Bookmark`The user opened a bookmark#3632
`E_Add_Bookmark`The user added a bookmark#3632
`E_Remove_Bookmark`The user removed a bookmark#3632
Messages -----------