diff --git a/README.md b/README.md index 29f69eb..2f3ed35 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,22 @@ The Android Debug Bridge or ADB for short it a client-server architecture used t The Android SDK Tools is available for the major platforms (Mac, Windows & Linux) and in there is a command line tool called adb that implements the ADB protocol. This projects aims at providing an up to date implementation of the ADB protocol. + +## Example ## +Usage cannot be simpler. Just create a `JadbConnection` and off you go. + + JadbConnection jadb = new JadbConnection(); + List actual = jadb.getDevices(); + AndroidDevice[] expected = { new AndroidDevice("emulator-5554") }; + Assert.assertArrayEquals(expected, actual.toArray());` + +## Protocol Description ## + +An overview of the protocol can be found here: [Overview](https://github.com/cgjones/android-system-core/blob/master/adb/OVERVIEW.TXT) + +A list of the available commands that a ADB Server may accept can be found here: +[Services](https://github.com/cgjones/android-system-core/blob/master/adb/SERVICES.TXT) + + +## Author ## +Samuel Carlsson \ No newline at end of file diff --git a/test/se/vidstige/jadb/test/JadbTestCases.java b/test/se/vidstige/jadb/test/JadbTestCases.java index 8268946..d1997d4 100644 --- a/test/se/vidstige/jadb/test/JadbTestCases.java +++ b/test/se/vidstige/jadb/test/JadbTestCases.java @@ -1,6 +1,5 @@ package se.vidstige.jadb.test; -import java.util.Arrays; import java.util.List; import org.junit.Assert;