build.gradle 632 B

123456789101112131415161718192021222324
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. apply from: 'config.gradle'
  3. buildscript {
  4. ext {
  5. kotlin_version = '1.6.0'
  6. }
  7. repositories {
  8. google()
  9. mavenCentral()
  10. jcenter()
  11. }
  12. dependencies {
  13. classpath 'com.android.tools.build:gradle:7.1.1'
  14. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  15. // NOTE: Do not place your application dependencies here; they belong
  16. // in the individual module build.gradle files
  17. }
  18. }
  19. task clean(type: Delete) {
  20. delete rootProject.buildDir
  21. }