build.gradle 703 B

1234567891011121314151617181920212223242526272829
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. lifecycle_version = '2.7.0'
  5. fragment_version = '2.7.7'
  6. }
  7. repositories {
  8. google()
  9. mavenCentral()
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:8.3.1'
  13. classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23'
  14. // NOTE: Do not place your application dependencies here; they belong
  15. // in the individual module build.gradle files
  16. }
  17. }
  18. allprojects {
  19. repositories {
  20. google()
  21. mavenCentral()
  22. }
  23. }
  24. tasks.register('clean', Delete) {
  25. delete rootProject.buildDir
  26. }