Browse Source

build.gradle: get the instrument tests building

master
Reece H. Dunn 12 years ago
parent
commit
db49a68f70
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      android/build.gradle

+ 12
- 0
android/build.gradle View File

@@ -9,6 +9,14 @@ buildscript {

apply plugin: 'android'

repositories {
mavenCentral()
}

dependencies {
instrumentTestCompile 'org.hamcrest:hamcrest-all:1.3'
}

android {
buildToolsVersion '18.0'
compileSdkVersion 18
@@ -24,6 +32,10 @@ android {
java.srcDirs = ['src']
res.srcDirs = ['res']
}
instrumentTest.setRoot('eSpeakTests')
instrumentTest {
java.srcDirs = ['eSpeakTests/src']
}
}
}


Loading…
Cancel
Save