-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
31 lines (23 loc) · 954 Bytes
/
build.gradle.kts
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
29
30
31
import extension.applyDefault
buildscript {
repositories {
google()
mavenCentral()
jcenter()
maven(url = "https://developer.huawei.com/repo/") //
}
dependencies {
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${ClasspathVersion.versionNavigationArgs}")
classpath("com.android.tools.build:gradle:${ClasspathVersion.versionGradleKotlin}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${ClasspathVersion.versionKotlin}")
classpath("com.huawei.agconnect:agcp:${ClasspathVersion.versionHuaweiService}")
classpath("com.google.gms:google-services:${ClasspathVersion.versionGoogleService}")// HUAWEI agcp plugin
classpath("com.bugsnag:bugsnag-android-gradle-plugin:${ClasspathVersion.versionBugsnack}")
}
}
allprojects {
repositories.applyDefault()
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}