Home | History | Annotate | Download | only in gridlayout
      1 apply plugin: 'android-library'
      2 
      3 archivesBaseName = 'gridlayout-v7'
      4 
      5 android {
      6     compileSdkVersion "unstubbed"
      7     buildToolsVersion "17"
      8 
      9     sourceSets {
     10         main.manifest.srcFile 'AndroidManifest.xml'
     11         main.java.srcDir 'src'
     12         main.res.srcDir 'res'
     13         main.assets.srcDir 'assets'
     14         main.resources.srcDir 'src'
     15         instrumentTest.java.srcDir 'tests/src'
     16 
     17         // this moves src/instrumentTest to tests so all folders follow:
     18         // tests/java, tests/res, tests/assets, ...
     19         // This is a *reset* so it replaces the default paths
     20         instrumentTest.setRoot('tests')
     21     }
     22 }