build.gradle 759 B

12345678910111213141516171819202122232425
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. maven {
  5. url 'https://maven.aliyun.com/repository/public/'
  6. }
  7. mavenCentral()
  8. maven {
  9. url 'https://maven.aliyun.com/repository/google'
  10. name 'Google'
  11. }
  12. google()
  13. maven { url 'https://jitpack.io' }
  14. }
  15. dependencies {
  16. classpath 'com.android.tools.build:gradle:4.1.3'
  17. classpath 'com.yanzhenjie.andserver:plugin:2.1.9'
  18. // NOTE: Do not place your application dependencies here; they belong
  19. // in the individual module build.gradle files
  20. }
  21. }
  22. task clean(type: Delete) {
  23. delete rootProject.buildDir
  24. }