-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
26 lines (25 loc) · 861 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
buildscript {
ext {
version_hilt = '2.47'
version_compose = '1.4.3'
version_compose_activity = '1.7.2'
version_compose_fragment = '1.6.1'
version_navigation_compose = '2.7.1'
version_material_3 = '1.2.0-alpha04'
version_material_2 = '1.2.1'
version_constraintlayout = '1.0.1'
version_lifecycle = '2.5.1'
version_room = '2.5.2'
version_gson = '2.10.1'
}
}
plugins {
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'com.google.devtools.ksp' version '1.8.21-1.0.11' apply false
id 'com.google.dagger.hilt.android' version "$version_hilt" apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}