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.
25 lines
771 B
25 lines
771 B
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven { url 'https://oss.sonatype.org/content/groups/public/' }
|
|
maven { url 'https://developer.huawei.com/repo/' }
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:7.4.2"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
flatDir { dirs 'libs' }
|
|
mavenCentral()
|
|
google()
|
|
maven { url 'https://jitpack.io' }
|
|
maven { url 'https://oss.sonatype.org/content/groups/public/' }
|
|
maven { url 'https://developer.huawei.com/repo/' }
|
|
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
|
|
}
|
|
} |