From e6bd3dd6de857c1e9a913e1365a3ea996f3dff0a Mon Sep 17 00:00:00 2001
From: Matthew Finkel <Matthew.Finkel@gmail.com>
Date: Wed, 11 Apr 2018 20:37:43 +0000
Subject: [PATCH] Bug 25741 - TBA: Disable all data reporting by default

This includes:
Telemetry
Geo-Location (Wi-Fi, Cellular location data, etc)
Health Report
---
 mobile/android/app/src/main/res/xml/preferences_privacy.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/mobile/android/app/src/main/res/xml/preferences_privacy.xml b/mobile/android/app/src/main/res/xml/preferences_privacy.xml
index 68a2066976c80..23be2f12121bb 100644
--- a/mobile/android/app/src/main/res/xml/preferences_privacy.xml
+++ b/mobile/android/app/src/main/res/xml/preferences_privacy.xml
@@ -84,7 +84,8 @@
 
         <CheckBoxPreference android:key="android.not_a_preference.app.geo.reportdata"
                             android:title="@string/datareporting_wifi_title"
-                            android:summary="@string/datareporting_wifi_geolocation_summary" />
+                            android:summary="@string/datareporting_wifi_geolocation_summary"
+                            android:defaultValue="false" />
 
         <org.mozilla.gecko.preferences.AlignRightLinkPreference android:key="android.not_a_preference.geo.learn_more"
                                                                 android:title="@string/pref_learn_more"
@@ -94,7 +95,7 @@
         <CheckBoxPreference android:key="android.not_a_preference.healthreport.uploadEnabled"
                             android:title="@string/datareporting_fhr_title"
                             android:summary="@string/datareporting_fhr_summary2"
-                            android:defaultValue="true" />
+                            android:defaultValue="false" />
 
     </PreferenceCategory>
 
-- 
GitLab