-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (29 loc) · 1.06 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_ui_version = '1.4.3'
kotlin_version = '1.9.24'
// Remember to upgrade lint_version when this is upgraded
agp_version = '8.4.1'
// Should be agp_version +23
lint_version = '31.1.1'
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
repositories {
mavenCentral()
}
}
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
id 'com.google.dagger.hilt.android' version "2.51.1" apply false
id 'org.jetbrains.kotlin.jvm' version '1.7.10' apply false
id 'com.google.devtools.ksp' version '1.9.24-1.0.20' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version "1.8.10" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}