build.gradle 779 B

12345678910111213141516171819202122232425262728293031323334
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. //buildscript {
  3. //
  4. // repositories {
  5. // gradlePluginPortal()
  6. // google()
  7. // mavenCentral()
  8. // }
  9. // dependencies {
  10. // classpath 'com.android.tools.build:gradle:4.2.2'
  11. //
  12. //
  13. // // NOTE: Do not place your application dependencies here; they belong
  14. // // in the individual module build.gradle files
  15. // }
  16. //}
  17. //
  18. //allprojects {
  19. // repositories {
  20. // gradlePluginPortal()
  21. // google()
  22. // mavenCentral()
  23. // }
  24. //}
  25. plugins {
  26. id 'com.android.application' version '7.3.1' apply false
  27. id 'com.android.library' version '7.3.1' apply false
  28. }
  29. task clean(type: Delete) {
  30. delete rootProject.buildDir
  31. }