// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
buildscript {
|
repositories {
|
|
maven { url 'http://developer.huawei.com/repo/' }
|
|
//字节跳动SDK
|
maven {
|
url "https://artifact.bytedance.com/repository/Volcengine/"
|
}
|
maven {
|
url "https://artifact.bytedance.com/repository/pangle/"
|
}
|
maven { url "https://artifact.bytedance.com/repository/AwemeOpenSDK" }
|
|
|
maven {
|
url "https://maven.aliyun.com/repository/public"
|
}
|
|
maven {
|
url "https://maven.aliyun.com/repository/google"
|
}
|
|
|
maven { url 'https://repo1.maven.org/maven2/' }
|
|
jcenter()
|
mavenCentral()
|
google()
|
|
|
|
|
|
|
}
|
|
dependencies {
|
classpath 'com.android.tools.build:gradle:4.1.1'
|
classpath 'com.huawei.agconnect:agcp:1.4.1.300'
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"
|
}
|
}
|
|
allprojects {
|
repositories {
|
|
maven { url 'http://developer.huawei.com/repo/' }
|
|
maven {
|
url "https://artifact.bytedance.com/repository/Volcengine/"
|
}
|
maven {
|
url "https://artifact.bytedance.com/repository/pangle/"
|
}
|
|
maven { url "https://artifact.bytedance.com/repository/AwemeOpenSDK" }
|
|
|
maven {
|
url "https://maven.aliyun.com/repository/public"
|
}
|
|
maven {
|
url "https://maven.aliyun.com/repository/google"
|
}
|
|
maven { url 'https://repo1.maven.org/maven2/' }
|
|
jcenter()
|
google()
|
|
|
maven { url 'https://jitpack.io' }
|
// maven { url 'https://dl.bintray.com/umsdk/release' }
|
// maven { url "https://dl.bintray.com/thelasterstar/maven/" }
|
maven { url 'http://developer.huawei.com/repo/' }
|
|
|
}
|
}
|