build.gradle.kts 538 B

12345678910111213141516
  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. id("com.android.library") version "8.1.2" apply false
  12. }
  13. tasks.register("clean", Delete::class) {
  14. delete(rootProject.buildDir)
  15. }