build.gradle 817 B

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