build.gradle.kts 479 B

123456789101112131415
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. dependencies {
  4. classpath(libs.hilt.android.gradle.plugin)
  5. }
  6. }
  7. plugins {
  8. id("com.android.application") version "8.1.2" apply false
  9. id("org.jetbrains.kotlin.android") version "1.9.10" apply false
  10. id("com.google.devtools.ksp") version "1.9.0-1.0.12" apply false
  11. }
  12. tasks.register("clean", Delete::class) {
  13. delete(rootProject.buildDir)
  14. }