forked from ermolnik/AndroidSample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (26 loc) · 740 Bytes
/
build.gradle.kts
File metadata and controls
31 lines (26 loc) · 740 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
29
30
31
@file:Suppress("SpellCheckingInspection")
buildscript {
repositories {
google()
jcenter()
maven (url = "https://jitpack.io")
maven (url = "https://plugins.gradle.org/m2/")
}
dependencies {
classpath("com.google.gms:google-services:4.3.3")
classpath("com.android.tools.build:gradle:3.6.3")
classpath(kotlin("gradle-plugin", version = Versions.kotlin))
classpath("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.8.0")
classpath("org.jacoco:org.jacoco.core:0.8.5")
}
}
allprojects {
repositories {
google()
maven (url = "https://jitpack.io")
jcenter()
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}