1234567891011121314151617181920212223242526272829303132333435363738394041 |
- buildscript {
- ext.kotlin_version = '1.6.0'
- repositories {
- // maven { url 'https://maven.aliyun.com/repository/public' }
- // maven{ url 'https://maven.aliyun.com/repository/google'}
- // maven{ url 'https://maven.aliyun.com/repository/central'}
- jcenter()
- google()
- mavenCentral()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:4.1.3'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
- }
- allprojects {
- repositories {
- // maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
- // maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
- // maven { url 'https://maven.aliyun.com/repository/public' }
- // maven{ url 'https://maven.aliyun.com/repository/google'}
- // maven{ url 'https://maven.aliyun.com/repository/central'}
- jcenter()
- google()
- mavenCentral()
- }
- }
- rootProject.buildDir = '../build'
- subprojects {
- project.buildDir = "${rootProject.buildDir}/${project.name}"
- }
- subprojects {
- project.evaluationDependsOn(':app')
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|