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.
25 lines
619 B
25 lines
619 B
allprojects { |
|
repositories { |
|
maven { |
|
url 'https://maven.aliyun.com/repository/google' |
|
} |
|
maven { |
|
url 'https://maven.aliyun.com/repository/jcenter' |
|
} |
|
maven { url "https://www.jitpack.io" } |
|
maven { url 'https://repo1.maven.org/maven2/' } |
|
maven { url 'https://developer.huawei.com/repo/' } |
|
} |
|
} |
|
|
|
rootProject.buildDir = '../build' |
|
subprojects { |
|
project.buildDir = "${rootProject.buildDir}/${project.name}" |
|
} |
|
subprojects { |
|
project.evaluationDependsOn(':app') |
|
} |
|
|
|
tasks.register("clean", Delete) { |
|
delete rootProject.buildDir |
|
}
|
|
|