-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (29 loc) · 930 Bytes
/
build.gradle
File metadata and controls
33 lines (29 loc) · 930 Bytes
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
buildscript {
ext {
core_ktx_version = '1.7.0'
compose_version = '1.1.1'
compose_activity_version = '1.4.0'
compose_accompanist_version = '0.23.1'
lifecycle_version = '2.4.1'
coroutines_version = '1.6.0-native-mt'
hilt_version = '2.41'
hilt_compose_navigation_version = '1.0.0'
room_version = '2.4.2'
splash_version = '1.0.0-beta01'
work_version = '2.7.1'
junit_version = '4.13.2'
junit_ext_version = '1.1.3'
espresso_core_version = '3.4.0'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}