-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
37 lines (32 loc) · 961 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
buildscript {
ext {
kotlin_version="1.5.30"
compose_version = "1.0.3"
ktor_version = "1.6.3"
kt_serialization_version="1.3.0"
koin_version = "3.1.2"
coroutines_version="1.5.2"
androidCore_version = '1.6.0'
navigation_version="2.4.0-alpha02"
coil_version= '1.4.0'
timber_version="5.0.1"
paging_version = "3.0.0"
palette_version="28.0.0"
//Data layer
retrofit_version = '2.9.0'
okhttp_vesion = '5.0.0-alpha.2'
loggingIntercepter_version = '5.0.0-alpha.2'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}