6         classpath 'com.android.tools.build:gradle:0.13.0'
 
   9 apply plugin: 'com.android.library'
 
  12     compile fileTree(dir: 'libs', include: '*.jar')
 
  17     buildToolsVersion "20.0.0"
 
  21             manifest.srcFile 'AndroidManifest.xml'
 
  22             java.srcDirs = ['src']
 
  23             resources.srcDirs = ['src']
 
  24             aidl.srcDirs = ['src']
 
  25             renderscript.srcDirs = ['src']
 
  27             assets.srcDirs = ['assets']
 
  30         // Move the tests to tests/java, tests/res, etc...
 
  31         instrumentTest.setRoot('tests')
 
  33         // Move the build types to build-types/<type>
 
  34         // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
 
  35         // This moves them out of them default location under src/<type>/... which would
 
  36         // conflict with src/ being used by the main source set.
 
  37         // Adding new build types or product flavors should be accompanied
 
  38         // by a similar customization.
 
  39         debug.setRoot('build-types/debug')
 
  40         release.setRoot('build-types/release')