Open main menu

DAVE Developer's Wiki β

Changes

Dacu

188 bytes added, 16:12, 26 July 2012
Running the Android Debug Bridge (ADB)
[http://developer.android.com/tools/help/adb.html ADB] is a fundamental development tool and enables remote access to the Android device. ADB is provided with the Android SDK, so before using it you must install the SDK.
To establish the ADB connection, on a '''Linux ''' host machine launch the following commands:
<pre class="workstation-terminal">
$ adb start-server
</pre>
 
On a Windows host machine, launch the following commands:
 
<pre class="workstation-terminal">
adb tcpip 5555
adb connect 192.168.0.101:5555
adb kill-server
adb start-server
</pre>
 
To check the connection, please launch