-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (27 loc) · 945 Bytes
/
build.gradle
File metadata and controls
29 lines (27 loc) · 945 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
buildscript {
ext {
gradle_version = '7.4.0'
kotlin_version = '1.8.20'
google_services_version = '4.3.15'
compose_bom_version = '2023.04.01'
compose_version = '1.4.6'
hilt_version = '2.46.1'
hilt_navigation_compose_version = '1.0.0'
firebase_bom_version = '32.0.0'
play_services_auth_version = '20.5.0'
accompanist_version = '0.31.1-alpha'
coil_compose_version = '2.3.0'
}
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
}