build.gradle 801 B

123456789101112131415161718192021222324252627282930313233343536
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. kotlin_version = '2.1.21'
  5. }
  6. repositories {
  7. google()
  8. jcenter()
  9. mavenCentral()
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:8.7.2'
  13. classpath 'com.google.gms:google-services:4.4.2'
  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. apply from: "variables.gradle"
  20. allprojects {
  21. repositories {
  22. google()
  23. jcenter()
  24. mavenCentral()
  25. }
  26. }
  27. task clean(type: Delete) {
  28. delete rootProject.buildDir
  29. }