build.gradle 742 B

1234567891011121314151617181920212223242526
  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. gradlePluginPortal()
  7. maven { url 'https://jitpack.io' }
  8. maven {
  9. url'http://8.134.139.102:8085/repository/wenext-android/'
  10. credentials {
  11. username 'admin'
  12. password 'e405f245-3a0e-4de7-8768-c4c62bdea293'
  13. }
  14. allowInsecureProtocol = true//允许 Gradle 使用不安全的协议
  15. }
  16. }
  17. dependencies {
  18. classpath libs.android.build.gradle
  19. classpath libs.kotlin.gradle.plugin
  20. }
  21. }
  22. task clean(type: Delete) {
  23. delete rootProject.buildDir
  24. }