-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (43 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
46
47
buildscript {
ext {
gradle = '8.0.2'
kotlin = '1.7.20'
kotlinBom = '1.8.0'
core = '1.10.1'
lifecycle = '2.4.0'
compose = '1.7.2'
composeBom = '2023.06.01'
accompanist = '0.20.0'
navigation = '2.6.0'
hiltVersion = '2.42'
hiltNavigation = '1.0.0'
ktlint = '10.2.0'
retrofit = '2.9.0'
okhttp = '4.11.0'
serialization = '1.5.1'
constraintlayout = '1.0.1'
coil = '2.2.2'
junit = '4.13.2'
coroutine = '1.6.4'
mockk = '1.13.5'
junitJupiter = '5.9.2'
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
classpath "org.jlleitschuh.gradle:ktlint-gradle:$ktlint"
}
}
plugins {
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}