-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (48 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
buildscript {
ext {
minSdk = 34
compileSdk = 34
targetSdk = 34
androix_appcompat = "1.6.1"
androix_lifecycle = "2.3.1"
kotlin_version = "1.9.20"
nav_compose_version = "1.1.0"
retrofit2 = "2.9.0"
okhttp3 = "5.0.0-alpha.1"
hilt_version = "2.48"
core_ktx_version = "1.12.0"
room_version = "2.6.0"
lifecycle_version = "2.6.2"
activity_compose_version = '1.8.0'
compose_version = '1.5.4'
compose_compiler = '1.5.4'
compose_material3 = '1.1.2'
nav_version = "2.7.5"
// Coil
coil_compose = "2.4.0"
// Unit test
junit = "4.13.2"
// Android test
espresso = "3.5.1"
android_junit = "1.1.5"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.21.0")
}
}
plugins {
id 'com.android.application' version '8.1.2' apply false
id 'com.android.library' version '8.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
id 'org.jetbrains.kotlin.jvm' version "$kotlin_version" apply false
id 'com.google.devtools.ksp' version '1.9.20-1.0.14' apply false
}
tasks.register('clean', Delete) {
delete(rootProject.buildDir)
}