* Search engine plugins and add-ons must follow a fixed folder layout.
* If distribution data is processed after the initial quickshare set is loaded, these options won't take effect until next run ({{bug|1021176}}).
== Creating a distribution locally ==
* You can test creating a /system distribution with a rooted phone
** Run 'adb devices' to find the ID for your device
** Run 'mount -o remount,rw <device> /system' as root in adb shell (replace <device> with your device ID)
** Put distribution files at /system/<package>/distribution/* (replace <package> with the ID for the package you want to test, e.g. org.mozilla.fennec)
* To create a distribution build locally, put your distribution folder at objdir/dist/bin/distribution, then package the app as you normally would (./mach build). The distribution files will be copied out to /data/data/org.mozilla.fennec_yourname/distribution, and they will override a system distribution if it is present.
==Bookmarks==
* hdpi: 188x98
* mdpi:125x65
== Testing a distribution locally ==
* To create a repackaged distribution:
** Put your distribution folder at <code>objdir/dist/bin/distribution</code>
** Run <code>./mach package</code> to package the app
** The distribution files will be copied out to <code>/data/data/org.mozilla.fennec_yourname/distribution</code>, and they will override a system distribution if it is present
* To create a /system distribution, follow these steps with a rooted phone:
** Run <code>adb devices</code> to find the ID for your device
** Run <code>mount -o remount,rw <device> /system</code> as root in adb shell (replace <device> with your device ID)
** Put distribution files at <code>/system/<package>/distribution/*</code> (replace <package> with the ID for the package you want to test, e.g. org.mozilla.fennec)
==Testing distribution download==