-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
45 lines (43 loc) · 1.5 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
buildscript {
ext {
gradle_version = '7.2.2'
kotlin_version = "1.8.0"
google_services_version = "4.3.10"
hilt_version = "2.43.2"
core_version = "1.8.0"
appcompat_version = "1.5.0"
live_data_version = "2.5.1"
compose_version = "1.4.1"
compose_bom_version = "2023.03.00"
hilt_navigation_compose_version = "1.0.0"
firebase_bom_version = "32.7.0"
play_services_version = "1.6.2"
play_services_auth_version = "20.3.0"
accompanist_version = "0.24.10-beta"
coil_compose_version = "2.1.0"
health_connect_version = '1.0.0-alpha11'
android_fhir_version = '1.0.0'
spotless_version = '6.10.0'
}
dependencies {
classpath "com.google.gms:google-services:$google_services_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "com.diffplug.spotless:spotless-plugin-gradle:$spotless_version"
}
repositories {
google()
}
}// 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
}
subprojects {
afterEvaluate { project ->
project.apply from: '../spotless.gradle'
}
}