Last active
August 29, 2015 14:19
-
-
Save justindarc/0ec2e3fd7c0ded2016e2 to your computer and use it in GitHub Desktop.
enable_developer_mode.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
adb shell "stop b2g" | |
adb shell "cd /data/b2g/mozilla/*.default/;echo 'user_pref(\"dom.apps.developer_mode\", true);' >> prefs.js;" | |
adb shell "cd /data/b2g/mozilla/*.default/;echo 'user_pref(\"network.disable.ipc.security\", true);' >> prefs.js;" | |
adb shell "start b2g" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment