generated from atick-faisal/Jetpack-Compose-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (28 loc) · 903 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
30
31
32
33
buildscript {
ext {
compile_sdk_version = 33
min_sdk_version = 24
target_sdk_version = 33
version_code = 9
version_name = "7.0.1"
agp_version = "7.2.2"
kotlin_version = "1.7.10"
compose_version = "1.2.1"
compose_compiler_version = "1.3.0"
lifecycle_version = "2.5.1"
nav_version = "2.5.2"
hilt_version = "2.43.2"
}
dependencies {
classpath("com.google.dagger:hilt-android-gradle-plugin:$hilt_version")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version")
}
}
plugins {
id("com.android.application") version "$agp_version" apply false
id("com.android.library") version "$agp_version" apply false
id("org.jetbrains.kotlin.android") version "$kotlin_version" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}