build.gradle 509 B

1234567891011121314151617
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. agp_version = '8.7.2'
  5. }
  6. dependencies {
  7. classpath "com.android.tools.build:gradle:$agp_version"
  8. }
  9. }
  10. plugins {
  11. id 'com.android.application' version '8.7.2' apply false
  12. id 'com.android.library' version '8.7.2' apply false
  13. id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
  14. }
  15. task clean(type: Delete) {
  16. delete rootProject.buildDir
  17. }