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.

72 lines
2.1 KiB

4 years ago
buildscript {
ext.kotlin_version = '1.7.10'
4 years ago
repositories {
maven {
url 'https://maven.aliyun.com/repository/google'
}
maven {
url 'https://maven.aliyun.com/repository/jcenter'
}
maven {
7 months ago
allowInsecureProtocol = true
4 years ago
url 'http://maven.aliyun.com/nexus/content/groups/public'
}
3 years ago
// google()
// jcenter()
maven {
7 months ago
allowInsecureProtocol = true
url "http://mvn.mob.com/android"
}
4 years ago
maven { url "https://www.jitpack.io" }
maven {url 'https://developer.huawei.com/repo/'}
maven { url 'https://repo1.maven.org/maven2/' }
4 years ago
}
dependencies {
3 years ago
// classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.2.0'
4 years ago
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
4 years ago
classpath 'com.huawei.agconnect:agcp:1.4.1.300'
classpath 'com.mob.sdk:MobSDK:+'
classpath 'com.android.tools.build:gradle:3.4.0'
classpath fileTree(include:['*.jar'], dir:'libs')
classpath 'com.umeng.umsdk:common:9.4.7'
classpath 'com.umeng.umsdk:asms:1.4.0'
classpath 'com.umeng.umsdk:abtest:1.0.0'
4 years ago
}
}
allprojects {
repositories {
maven {
url 'https://maven.aliyun.com/repository/google'
}
maven {
url 'https://maven.aliyun.com/repository/jcenter'
}
maven {
7 months ago
allowInsecureProtocol = true
4 years ago
url 'http://maven.aliyun.com/nexus/content/groups/public'
}
3 years ago
// google()
// jcenter()
maven {
7 months ago
allowInsecureProtocol = true
url "http://mvn.mob.com/android"
}
4 years ago
maven { url "https://www.jitpack.io" }
4 years ago
maven { url 'https://developer.huawei.com/repo/'}
maven { url 'https://repo1.maven.org/maven2/' }
4 years ago
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}