Skip to content

Instantly share code, notes, and snippets.

@tophyr
Created January 30, 2014 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tophyr/8714907 to your computer and use it in GitHub Desktop.
Save tophyr/8714907 to your computer and use it in GitHub Desktop.
apply plugin: 'android'
repositories {
mavenLocal()
mavenCentral()
}
group = 'com.google.android.apps.common.testing'
version = '1.1'
description = 'Tests for the Espresso Contrib Library'
dependencies {
compile project(':android-test-kit:espresso:contrib')
compile project(':android-test-kit:testrunner-runtime')
compile project(':android-test-kit:testapp')
// compile(group: 'com.google.android', name: 'android', version:'4.1.1.4')
// compile(group: 'com.google.android', name: 'android-test', version:'4.1.1.4')
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
}
}
}
afterEvaluate {
configurations.compile.allDependencies.each { println (it.artifacts) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment