build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. gradlePluginPortal()
  5. google()
  6. mavenCentral()
  7. maven { url "https://jitpack.io" }
  8. //maven { url 'https://download.01.org/crosswalk/releases/crosswalk/android/maven2' }
  9. maven { url 'http://home.jundie.top:81/xwalk/maven2' }
  10. // maven { url 'http://9xi4o.tk/maven2' }
  11. }
  12. dependencies {
  13. classpath "com.android.tools.build:gradle:4.2.2"
  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. gradlePluginPortal()
  21. google()
  22. mavenCentral()
  23. maven { url "https://jitpack.io" }
  24. //maven { url 'https://download.01.org/crosswalk/releases/crosswalk/android/maven2' }
  25. // maven { url 'http://9xi4o.tk/maven2' }
  26. maven { url 'http://home.jundie.top:81/xwalk/maven2' }
  27. }
  28. }
  29. task clean(type: Delete) {
  30. delete rootProject.buildDir
  31. }