build.gradle 912 B

1234567891011121314151617181920212223242526272829303132
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext.kotlin_version = '1.1.51'
  4. repositories {
  5. jcenter()
  6. maven { url 'https://maven.google.com' }
  7. //maven { url 'https://dl.bintray.com/guardian/android' } // TooLargeTool
  8. google()
  9. }
  10. dependencies {
  11. classpath 'com.android.tools.build:gradle:3.0.0-beta6'
  12. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  13. // NOTE: Do not place your application dependencies here; they belong
  14. // in the individual module build.gradle files
  15. }
  16. }
  17. allprojects {
  18. repositories {
  19. jcenter()
  20. maven { url 'https://maven.google.com' }
  21. //maven { url 'https://dl.bintray.com/guardian/android' } // TooLargeTool
  22. google()
  23. }
  24. }
  25. task clean(type: Delete) {
  26. delete rootProject.buildDir
  27. }