-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (53 loc) · 1.84 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//buildscript {
// ext {
// gradle_version = '7.4.2'
// compose_version = '1.4.6'
// gms_version = '4.3.15'
// hilt_version = '2.46.1'
// nav_version = '2.6.0'
// firebase_bom_version = '32.1.1'
// accompanist_version = '0.31.2-alpha'
// hilt_navigation_compose_version = '1.0.0'
// kotlin_version = '1.8.20'
// compose_bom_version = '2023.05.01'
// }
//
// dependencies {
// classpath "com.google.gms:google-services:$gms_version"
// classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
// }
//}// Top-level build file where you can add configuration options common to all sub-projects/modules.
//plugins {
// id 'com.android.application' version "${gradle_version}" apply false
// id 'com.android.library' version "${gradle_version}" apply false
// id 'org.jetbrains.kotlin.android' version "${kotlin_version}" apply false
//}
//
//task clean(type: Delete) {
// delete rootProject.buildDir
//}
buildscript {
ext {
gradle_version = '7.4.0'
kotlin_version = '1.8.20'
google_services_version = '4.3.15'
compose_bom_version = '2023.05.01'
compose_version = '1.4.6'
hilt_version = '2.46.1'
hilt_navigation_compose_version = '1.0.0'
firebase_bom_version = '32.1.0'
accompanist_version = '0.31.2-alpha'
}
dependencies {
classpath "com.google.gms:google-services:$google_services_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
plugins {
id 'com.android.application' version "${gradle_version}" apply false
id 'com.android.library' version "${gradle_version}" apply false
id 'org.jetbrains.kotlin.android' version "${kotlin_version}" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}