You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext.kotlin_version = '1.6.10'
|
|
|
|
repositories {
|
|
|
|
//原仓库
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
|
|
|
//镜像仓库,无法连接源仓库自行启用镜像仓库,不要提交修改
|
|
|
|
//maven { url 'https://maven.aliyun.com/repository/google' }
|
|
|
|
//maven { url 'https://maven.aliyun.com/repository/public' }
|
|
|
|
//maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:7.1.1'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath 'de.timfreiheit.resourceplaceholders:placeholders:0.4'
|
|
|
|
classpath 'de.undercouch:gradle-download-task:4.1.2'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
//原仓库
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
//镜像仓库,无法连接源仓库自行启用镜像仓库,不要提交修改
|
|
|
|
//maven { url 'https://maven.aliyun.com/repository/google' }
|
|
|
|
//maven { url 'https://maven.aliyun.com/repository/public' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|