Diese Anleitung erklärt, wie man ein Firefox OS Gerät mit dem Rechner über USB verbindet.
Achtung: Um Apps auf einem Firefox OS Gerät zu debuggen und wenn auf dem Gerät Firefox 1.2+ läuft, ist der beste Weg den App Manager zu benutzen. Details können unter Benutzung des App Mangers nachgelesen werden. Wird eine Version von Firefox OS kleiner 1.2 benutzt, kann man unter Einrichtung des Firefox OS Debugging Modus unter Verwendung der Entwickler Tools mehr über das Standard Remote Debugging erfahren.
Einrichtung des Geräts
Auf deinem Firefox OS Gerät (see the layout):
- öffnen der App Einstellungen, dann
Geräteinformationen
>Weitere Informationen
> Entwickler. - Im Entwickler Menü "Debugging über USB" aktivieren.
Einrichtung des Rechners
Um ein Gerät mit dem Rechner zu verbinden muss die Android Debug Bridge (adb) installiert sein. Beachte dass das Firefox OS Simulator add-on eine adb mitbringt.
Instructions for setting up your desktop are specific to your operating system and are detailed in point 3 of "Setting up a Device for Development" on the Android developer site. We've listed some additional instructions below.
Spezielle Anweisungen für Mac OS X
If you're running Mac OS X, you have downloaded a package which has a name along adt-bundle-mac-x86_64-20130522
. Put that folder into the Applications folder, so that you get /Applications/adt-bundle-mac-x86_64-20130522/
which contains two directories: eclipse
and sdk
. Then you can edit your ~/.bashrc
and add
export PATH="/Applications/adt-bundle-mac-x86_64-20130522/sdk/platform-tools:$PATH"
(It will be ready for the next time you start your shell). You can now type on the CLI of the shell:
adb devices
and it will return a list of connected devices such as:
List of devices attached AA:BB:A5:B5:AA:BB device
Spezielle Anweisungen für Linux
If you're running Linux, the vendor ID to use for Firefox OS Geeksphone devices is 05c6
, so your /etc/udev/rules.d/51-android.rules
file should contain an entry similar to:
SUBSYSTEM=="usb", ATTR{idVendor}=="05c6", MODE="0666", GROUP="plugdev"
Spezielle Anweisungen für Windows
You can download Windows drivers for the Geeksphone from the Geeksphone website.
Windows 8 by default will not let you install unsigned drivers. See this tutorial on "How to install an unsigned driver on Windows 8".
Since Windows XP Home Edition doesn't include tasklist.exe
, Simulator won't detect the device. This can be solved downloading that file from ComputerHope website and putting it in Windows\System32
folder.
Einrichtung überprüfen
Once you've followed these instructions, attach the device to the desktop using a USB cable, open a command prompt and type "adb devices
" (ensuring that adb is in your path). You should see your Firefox OS device listed in the output.