build.gradle.kts 696 B

123456789101112131415161718192021222324252627
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. mavenCentral()
  6. }
  7. dependencies {
  8. classpath("com.android.tools.build:gradle:7.3.1")
  9. classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
  10. {{~#each android-project-dependencies}}
  11. classpath("{{this}}"){{/each}}
  12. // NOTE: Do not place your application dependencies here; they belong
  13. // in the individual module build.gradle files
  14. }
  15. }
  16. allprojects {
  17. repositories {
  18. google()
  19. mavenCentral()
  20. }
  21. }
  22. tasks.register("clean").configure {
  23. delete("build")
  24. }