upload android base code part7

This commit is contained in:
August 2018-08-08 18:09:17 +08:00
parent 4e516ec6ed
commit 841ae54672
25229 changed files with 1709508 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<p>AdbTest is a sample program that implements a subset of the <code>adb</code> USB protocol.
Currently it only implements the <code>adb logcat</code> command and displays the log
output in a text view and only allows connecting to one device at a time.
However, the support classes are structured in a way that would allow
connecting to multiple devices and running multiple <code>adb</code> commands simultaneously.</p>
<p>This program serves as an example of the following USB host features:</p>
<ul>
<li>Matching devices based on interface class, subclass and protocol (see <code>device_filter.xml</code>)</li>
<li>Asynchronous IO on bulk endpoints</li>
</ul>