-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·44 lines (39 loc) · 1.24 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
version_appcompat = "1.6.1" // last version compatible with API 19
version_constraint_layout = "2.1.4"
version_core = "1.13.1"
version_coroutine = "1.3.7"
version_fragment = "1.8.2"
version_gradle = '8.4.2'
version_kotlin = '2.0.20'
version_lifecycle = "2.8.5"
version_lifecycle_extensions = "2.2.0"
version_material = "1.12.0"
version_navigation = "2.8.0" // for Kotlin 2.+, 2.8.0; 2.7.7 -> 1.9
version_timber = "5.0.1"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$version_gradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$version_kotlin"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'com.google.devtools.ksp' version "2.0.20-1.0.25" apply false
}
allprojects {
repositories {
google()
mavenCentral()
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}