build.gradle.kts 537 B

1234567891011121314
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. @Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
  3. plugins {
  4. alias(libs.plugins.androidApplication) apply false
  5. alias(libs.plugins.kotlinAndroid) apply false
  6. alias(libs.plugins.google.ksp) apply false
  7. alias(libs.plugins.google.hilt) apply false
  8. }
  9. tasks.register("clean", Delete::class) {
  10. delete(rootProject.buildDir)
  11. }
  12. true // Needed to make the Suppress annotation work for the plugins block