| 1234567891011121314151617181920212223242526 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- repositories {
- google()
- mavenCentral()
- gradlePluginPortal()
- maven { url 'https://jitpack.io' }
- maven {
- url'http://8.134.139.102:8085/repository/wenext-android/'
- credentials {
- username 'admin'
- password 'e405f245-3a0e-4de7-8768-c4c62bdea293'
- }
- allowInsecureProtocol = true//允许 Gradle 使用不安全的协议
- }
- }
- dependencies {
- classpath libs.android.build.gradle
- classpath libs.kotlin.gradle.plugin
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|