-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (30 loc) · 1.06 KB
/
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
apply plugin: "io.gitlab.arturbosch.detekt"
buildscript {
ext {
gradle_version = "7.0.4"
coroutine_version = "1.5.2"
kotlin_version = "1.5.31"
lifecycle_version = "2.5.1"
retrofit_version = "2.9.0"
koin_version = "3.2.0"
nav_version = "2.3.5"
}
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.getkeepsafe.taptargetview:taptargetview:1.13.0'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath 'com.google.gms:google-services:4.3.13'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1'
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.17.1"
}
}
tasks.getByPath("detekt").onlyIf { gradle.startParameter.taskNames.contains("detekt") }
task clean(type: Delete) {
delete rootProject.buildDir
}