-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
32 lines (29 loc) · 1.04 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
buildscript {
ext {
androidPluginVersion = '7.2.0'
kotlinPluginVersion = '1.6.21'
composeVersion = '1.2.0-beta02'
coreVersion = '1.7.0'
lifecycleRuntimeVersion = '2.4.1'
activityComposeVersion = '1.4.0'
navigationVersion = '2.4.2'
hiltVersion = '2.41'
retrofit2Version = '2.9.0'
retrofit2ConverterVersion = '0.8.0'
serializationVersion = '1.3.3'
coroutinesVersion = '1.6.1'
dataStoreVersion = '1.0.0'
accompanistVersion = '0.24.9-beta'
androidSVGVersion = '1.4'
}
}
plugins {
id 'com.android.application' version "$androidPluginVersion" apply false
id 'com.android.library' version "$androidPluginVersion" apply false
id 'org.jetbrains.kotlin.android' version "$kotlinPluginVersion" apply false
id 'com.google.dagger.hilt.android' version "$hiltVersion" apply false
id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlinPluginVersion" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}