Skip to content

Instantly share code, notes, and snippets.

@rpappalax
Created April 11, 2014 03:56
Show Gist options
  • Save rpappalax/10440100 to your computer and use it in GitHub Desktop.
Save rpappalax/10440100 to your computer and use it in GitHub Desktop.
FxA prefs file
// FxA-related prefs from sam
user_pref("dom.identity.enabled", true);
user_pref("toolkit.identity.debug", true);
user_pref("dom.inter-app-communication-api.enabled", true);
user_pref("dom.identity.syntheticEventsOk", true);
// fxa is now preffed off by default
user_pref("identity.fxaccounts.ui.enabled", true);
// enable debugging of certified/system apps
user_pref("devtools.debugger.forbid-certified-apps", false);
// some other prefs copied from
// https://developer.mozilla.org/en-US/Firefox_OS/Platform/Gaia/Build_System_Primer#Customizing_the_preferences
// this enables marionette which lets you run performance tests
// see https://developer.mozilla.org/en-US/docs/Mozilla/Firefox_OS/Platform/Testing/Gaia_performance_tests
user_pref("marionette.defaultPrefs.enabled", true);
// this sets the port for remote debugging your application on the device
user_pref("devtools.debugger.remote-port", 60000);
// this enables the remote debugger
user_pref("devtools.debugger.remote-enabled", true);
// this outputs debug information about the Radio Interface Layer in logcat
user_pref("ril.debugging.enabled", true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment