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.
47 lines
1.1 KiB
47 lines
1.1 KiB
buildscript { |
|
ext.kotlin_version = '1.4.10' |
|
repositories { |
|
maven { |
|
url 'https://maven.aliyun.com/repository/google' |
|
} |
|
maven { |
|
url 'https://maven.aliyun.com/repository/jcenter' |
|
} |
|
maven { |
|
url 'http://maven.aliyun.com/nexus/content/groups/public' |
|
} |
|
google() |
|
// jcenter() |
|
} |
|
|
|
dependencies { |
|
classpath 'com.android.tools.build:gradle:4.1.1' |
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
|
} |
|
} |
|
|
|
allprojects { |
|
repositories { |
|
maven { |
|
url 'https://maven.aliyun.com/repository/google' |
|
} |
|
maven { |
|
url 'https://maven.aliyun.com/repository/jcenter' |
|
} |
|
maven { |
|
url 'http://maven.aliyun.com/nexus/content/groups/public' |
|
} |
|
google() |
|
// jcenter() |
|
} |
|
} |
|
|
|
rootProject.buildDir = '../build' |
|
subprojects { |
|
project.buildDir = "${rootProject.buildDir}/${project.name}" |
|
project.evaluationDependsOn(':app') |
|
} |
|
|
|
task clean(type: Delete) { |
|
delete rootProject.buildDir |
|
}
|
|
|