-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (31 loc) · 1.07 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
kotlin_version = '1.6.10'
detekt_version = '1.19.0'
ktlint_version = '10.2.0'
kotlinter_version = '3.7.0'
koin_version = "3.1.5"
retrofit_version = "2.9.0"
coil_version = "1.4.0"
gson_version = "2.8.9"
coroutines_version = "1.3.2"
firebase_bom_version = "29.0.0"
}
repositories {
google()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detekt_version"
classpath "org.jlleitschuh.gradle:ktlint-gradle:$ktlint_version"
classpath "org.jmailen.gradle:kotlinter-gradle:$kotlinter_version"
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
classpath 'com.google.gms:google-services:4.3.10'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}