Home | History | Annotate | Download | only in test
      1 apply plugin: 'android-library'
      2 
      3 dependencies {
      4     compile parent
      5 }
      6 
      7 android {
      8     compileSdkVersion 19
      9     buildToolsVersion '19.1.0'
     10 
     11     sourceSets {
     12         main {
     13             manifest.srcFile 'AndroidManifest.xml'
     14             java {
     15                 srcDir '.'
     16                 exclude 'android/**'
     17             }
     18             resources.srcDirs = ['../../testdata']
     19         }
     20     }
     21 }
     22