build.gradle 741 B

12345678910111213141516171819202122232425262728293031
  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.2.0'
  5. }
  6. repositories {
  7. google()
  8. mavenCentral()
  9. maven { url "https://jitpack.io" }
  10. maven {
  11. url "https://plugins.gradle.org/m2/"
  12. }
  13. }
  14. dependencies {
  15. classpath "com.android.tools.build:gradle:$agp_version"
  16. classpath 'gradle.plugin.chrisney:enigma:1.0.0.8'
  17. classpath "com.github.liujingxing:XmlClassGuard:1.1.0"
  18. }
  19. }
  20. allprojects {
  21. repositories {
  22. google()
  23. mavenCentral()
  24. maven { url 'https://jitpack.io' }
  25. }
  26. }
  27. task clean(type: Delete) {
  28. delete rootProject.buildDir
  29. }