24 lines
1.1 KiB
JavaScript
24 lines
1.1 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
// Preferences file used by the raptor harness exclusively on android
|
|
/* globals user_pref */
|
|
|
|
// disk cache smart size is enabled in shipped apps
|
|
user_pref("browser.cache.disk.smart_size.enabled", true);
|
|
|
|
// Raptor's manifest.json contains the "geckoProfiler" permission, which is
|
|
// not supported on Android. Ignore the warning about the unknown permission.
|
|
user_pref("extensions.webextensions.warnings-as-errors", false);
|
|
// disable telemetry bug 1639148
|
|
user_pref("toolkit.telemetry.server", "");
|
|
// Default Glean to "record but don't report" mode, and to never trigger
|
|
// activity-based ping submission. Docs:
|
|
// https://icecat-source-docs.mozilla.org/toolkit/components/glean/dev/preferences.html
|
|
user_pref("telemetry.fog.test.localhost_port", -1);
|
|
user_pref("telemetry.fog.test.activity_limit", -1);
|
|
user_pref("telemetry.fog.test.inactivity_limit", -1);
|
|
|
|
// Turn off update
|
|
user_pref("app.update.disabledForTesting", true);
|