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.
43 lines
1.5 KiB
43 lines
1.5 KiB
3 years ago
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
|
||
|
buildscript {
|
||
|
repositories {
|
||
|
maven {url "http://mvn.mob.com/android"}
|
||
|
maven{url 'http://maven.aliyun.com/nexus/content/groups/public'}
|
||
|
maven{url 'http://developer.huawei.com/repo/'}
|
||
|
maven{url 'http://maven.aliyun.com/nexus/content/repositories/releases/'}
|
||
|
jcenter()
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:3.3.2'
|
||
|
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.1'
|
||
|
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0'
|
||
|
classpath 'com.bugtags.library:bugtags-gradle:latest.integration'
|
||
|
classpath 'com.huawei.agconnect:agcp:1.4.2.301'
|
||
|
classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'
|
||
|
classpath "cn.hikyson.methodcanary:plugin:0.12.1"
|
||
|
classpath "com.mob.sdk:MobSDK:+"
|
||
|
// NOTE: Do not place your application dependencies here; they belong
|
||
|
// in the individual module build.gradle files
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
maven {url "http://mvn.mob.com/android"}
|
||
|
maven{url 'http://maven.aliyun.com/nexus/content/groups/public'}
|
||
|
maven{url 'http://developer.huawei.com/repo/'}
|
||
|
maven{url 'http://maven.aliyun.com/nexus/content/repositories/releases/'}
|
||
|
google()
|
||
|
jcenter()
|
||
|
maven { url 'https://jitpack.io' }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
task clean(type: Delete) {
|
||
|
delete rootProject.buildDir
|
||
|
}
|