build.gradle 688 B

12345678910111213141516171819202122232425262728
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. mavenCentral()
  6. maven { url "https://jitpack.io" }
  7. maven {
  8. url "https://plugins.gradle.org/m2/"
  9. }
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:4.0.2'
  13. classpath 'gradle.plugin.chrisney:enigma:1.0.0.8'
  14. classpath "com.github.liujingxing:XmlClassGuard:1.1.0"
  15. }
  16. }
  17. allprojects {
  18. repositories {
  19. google()
  20. mavenCentral()
  21. maven { url 'https://jitpack.io' }
  22. }
  23. }
  24. task clean(type: Delete) {
  25. delete rootProject.buildDir
  26. }