build.gradle 773 B

123456789101112131415161718192021222324252627282930313233
  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. jcenter()
  7. maven{
  8. url 'https://jitpack.io'
  9. }
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:7.1.0'
  13. classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
  14. // NOTE: Do not place your application dependencies here; they belong
  15. // in the individual module build.gradle files
  16. }
  17. }
  18. allprojects {
  19. repositories {
  20. google()
  21. mavenCentral()
  22. jcenter()
  23. maven{
  24. url 'https://jitpack.io'
  25. }
  26. }
  27. }
  28. task clean(type: Delete) {
  29. delete rootProject.buildDir
  30. }