-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (38 loc) · 1.24 KB
/
build.gradle
File metadata and controls
39 lines (38 loc) · 1.24 KB
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
buildscript {
ext {
paging_compose_version = '1.0.0-alpha14'
paging_version = '3.0.1'
mockito_version = '1.12.0'
gradle_version = '7.0.3'
kotlin_version = '1.5.31'
hilt_android_plugin = '2.39.1'
room_paging_version = '2.4.0-beta01'
androidx_core_version = '1.6.0'
androidx_lifecycle_runtime = '2.3.1'
androidx_activity_compose = '1.3.1'
compose_version = '1.0.4'
retrofit_version = '2.9.0'
androidx_arch_core = '2.1.0'
androidx_test_core_version = "1.4.0"
http_interceptor_version = '4.8.1'
coroutines_version = '1.5.2'
roboletric_version = '4.6.1'
coil_version = '1.4.0'
lifecycle_version = '2.4.0'
rxjava_version = '3.0.0'
room_version = "2.3.0"
}
repositories {
google()
mavenCentral()
maven { url "https://oss.jfrog.org/libs-snapshot" }
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_android_plugin"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}