build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. apply plugin: 'com.android.library'
  2. group = 'com.davemorrissey.labs'
  3. version = '3.4.1'
  4. dependencies {
  5. compile fileTree(dir: 'libs', include: '*.jar')
  6. compile "com.android.support:support-annotations:23.1.1"
  7. }
  8. android {
  9. compileSdkVersion 23
  10. buildToolsVersion "23.0.2"
  11. sourceSets {
  12. main {
  13. manifest.srcFile 'AndroidManifest.xml'
  14. java.srcDirs = ['src']
  15. resources.srcDirs = ['src']
  16. aidl.srcDirs = ['src']
  17. renderscript.srcDirs = ['src']
  18. res.srcDirs = ['res']
  19. assets.srcDirs = ['assets']
  20. }
  21. // Move the tests to tests/java, tests/res, etc...
  22. instrumentTest.setRoot('tests')
  23. // Move the build types to build-types/<type>
  24. // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
  25. // This moves them out of them default location under src/<type>/... which would
  26. // conflict with src/ being used by the main source set.
  27. // Adding new build types or product flavors should be accompanied
  28. // by a similar customization.
  29. debug.setRoot('build-types/debug')
  30. release.setRoot('build-types/release')
  31. }
  32. }