build.gradle 313 B

12345678910111213
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. apply from: "dependencies-variable.gradle"
  4. apply from: "dependencies-classpath.gradle"
  5. }
  6. apply from: 'dependencies-app.gradle'
  7. task clean(type: Delete) {
  8. delete rootProject.buildDir
  9. }