-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
29 lines (27 loc) · 938 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 {
compose_version = '1.2.0'
accompanist_version = '0.21.3-beta'
kotlin_version = '1.7.0'
room_version = '2.4.3'
hilt_version = '2.42'
moshi_version = "1.9.3"
navigation_version = "2.5.1"
lottieVersion = "5.2.0"
paging_version = "1.0.0-alpha16"
data_store_version ="1.0.0"
splash_screen_version="1.0.0"
window_manager_version="1.1.0-alpha03"
}
dependencies {
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 '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}