-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
32 lines (30 loc) · 912 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
32
buildscript {
repositories {
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://maven.google.com")
maven("https://jitpack.io")
mavenCentral()
jcenter()
google()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21")
classpath("com.android.tools.build:gradle:7.0.0-alpha04")
classpath("com.google.gms:google-services:4.3.4")
}
}
allprojects {
repositories {
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://maven.google.com")
maven("https://jitpack.io")
mavenCentral()
jcenter()
google()
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}