-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
28 lines (26 loc) · 823 Bytes
/
build.gradle.kts
File metadata and controls
28 lines (26 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
buildscript {
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
// Configure the Maven repository address for the HMS Core SDK.
maven { url = uri("https://developer.huawei.com/repo/")}
}
dependencies {
classpath("com.android.tools.build:gradle:8.1.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10")
classpath("com.huawei.agconnect:agcp:1.6.3.300")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
// Configure the Maven repository address for the HMS Core SDK.
maven { url = uri("https://developer.huawei.com/repo/")}
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}