-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
29 lines (27 loc) · 931 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
27
28
29
buildscript {
ext {
gradle_version = '7.3.0'
kotlin_version = '1.7.10'
google_services_version = '4.3.14'
viewmodel_version = '2.5.1'
material_version = '1.3.0-rc01'
navigation_compose_version = '2.5.2'
compose_version = '1.3.0'
hilt_version = '2.44'
hilt_navigation_compose_version = '1.0.0'
firebase_bom_version = '30.5.0'
play_services_version = '1.6.4'
}
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
}