-
Notifications
You must be signed in to change notification settings - Fork 800
/
build.gradle
40 lines (34 loc) · 911 Bytes
/
build.gradle
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
33
34
35
36
37
38
39
40
buildscript {
ext {
williamchartVersion = "3.10.1"
targetSdkVersion = 30
minSdkVersion = 16
kotlinVersion = "1.4.10"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
plugins {
id "io.gitlab.arturbosch.detekt" version "1.0.0"
id "com.vanniktech.android.junit.jacoco" version "0.15.0"
}
allprojects {
repositories {
google()
jcenter()
}
apply from: "$rootDir/ktlint.gradle"
apply from: "$rootDir/detekt.gradle"
apply from: "$rootDir/jacoco.gradle"
}
task clean(type: Delete) {
delete rootProject.buildDir
}