build.gradle 975 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.0.21'
  5. composeCompilerVersion = '2.0.1'
  6. androidxActivityVersion = '1.9.2'
  7. }
  8. repositories {
  9. google()
  10. jcenter()
  11. mavenCentral()
  12. }
  13. dependencies {
  14. classpath 'com.android.tools.build:gradle:8.7.2'
  15. classpath 'com.google.gms:google-services:4.4.2'
  16. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  17. classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:$composeCompilerVersion"
  18. // NOTE: Do not place your application dependencies here; they belong
  19. // in the individual module build.gradle files
  20. }
  21. }
  22. apply from: "variables.gradle"
  23. allprojects {
  24. repositories {
  25. google()
  26. jcenter()
  27. mavenCentral()
  28. }
  29. }
  30. task clean(type: Delete) {
  31. delete rootProject.buildDir
  32. }