From 117b1964726e429599d790b986f889d70969d7b4 Mon Sep 17 00:00:00 2001 From: ValentinTimisica Date: Fri, 7 Feb 2020 17:12:08 +0200 Subject: [PATCH] [fenix] For https://github.com/mozilla-mobile/fenix/issues/8172: Add a new "Fenix" Leanplum attribute --- .../mozilla/fenix/components/metrics/LeanplumMetricsService.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt b/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt index 1240a3e072..3c1de96d4a 100644 --- a/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt +++ b/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt @@ -94,7 +94,8 @@ class LeanplumMetricsService(private val application: Application) : MetricsServ "klar_installed" to installedApps.contains(MozillaProductDetector.MozillaProducts.KLAR.productName), "fxa_signed_in" to application.settings().fxaSignedIn, "fxa_has_synced_items" to application.settings().fxaHasSyncedItems, - "search_widget_installed" to application.settings().searchWidgetInstalled + "search_widget_installed" to application.settings().searchWidgetInstalled, + "fenix" to true )) }