blob: c39c0b3bf221d750ea71abe41505d67b3eb4efef [file] [log] [blame]
// To use the "android-support-test.jar" add the following dependency:
// compile project(":android-support-test")
if (!configurations.findByName("default")) {
configurations.create("default")
}
artifacts.add("default", file("android-support-test.jar"))
// To use the "android-support-test.jar" and the "esspresso-core.jar" add the following dependency:
// compile project(path: ":android-support-test", configuration: "espresso-core")
if (!configurations.findByName("espresso-core")) {
configurations.create("espresso-core")
}
artifacts.add("espresso-core", file("espresso-core.jar"))