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.
63 lines
1.7 KiB
63 lines
1.7 KiB
buildscript { |
|
ext.kotlin_version = '1.6.0' |
|
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() |
|
jcenter(){ |
|
url "http://jcenter.bintray.com/" |
|
} |
|
maven { |
|
url "http://mvn.mob.com/android" |
|
} |
|
maven { url "https://www.jitpack.io" } |
|
maven {url 'https://developer.huawei.com/repo/'} |
|
} |
|
|
|
dependencies { |
|
// classpath 'com.android.tools.build:gradle:4.1.0' |
|
classpath 'com.android.tools.build:gradle:4.1.1' |
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
|
classpath 'com.huawei.agconnect:agcp:1.4.1.300' |
|
classpath 'com.mob.sdk:MobSDK:+' |
|
} |
|
} |
|
|
|
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() |
|
maven { |
|
url "http://mvn.mob.com/android" |
|
} |
|
maven { url "https://www.jitpack.io" } |
|
maven { url 'https://developer.huawei.com/repo/'} |
|
} |
|
} |
|
|
|
rootProject.buildDir = '../build' |
|
subprojects { |
|
project.buildDir = "${rootProject.buildDir}/${project.name}" |
|
project.evaluationDependsOn(':app') |
|
} |
|
|
|
task clean(type: Delete) { |
|
delete rootProject.buildDir |
|
}
|
|
|