diff --git a/DeviceAutomator/build.gradle b/DeviceAutomator/build.gradle index 5c9c74b..c234dc0 100644 --- a/DeviceAutomator/build.gradle +++ b/DeviceAutomator/build.gradle @@ -34,6 +34,7 @@ dependencies { task javadocs(type: Javadoc) { source = android.sourceSets.main.java.srcDirs classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) + failOnError false } task javadocsJar(type: Jar, dependsOn: javadocs) { diff --git a/README.md b/README.md index 8bf673d..3eedcab 100644 --- a/README.md +++ b/README.md @@ -14,22 +14,13 @@ interacting with the application - locating UI elements and interacting with the ### Download device-automator -device-automator is in an early state of development and is available via [JitPack](https://jitpack.io). - -Add the following to your repositories in your `build.gradle` file: - -```groovy -repositories { - // ... - maven { url "https://jitpack.io" } -} -``` +device-automator is in an early state of development, but is available on Maven. Add the dependency in your `build.gradle` file: ```groovy dependencies { - androidTestCompile 'com.github.lkorth:device-automator:master-SNAPSHOT' + androidTestCompile 'com.lukekorth:device-automator:0.1.0' } ```