-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (28 loc) · 1.17 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
plugins {
// https://mvnrepository.com/artifact/com.android.application/com.android.application.gradle.plugin
id 'com.android.application' version '8.5.2' apply false
id 'com.android.library' version '8.5.2' apply false
// https://mvnrepository.com/artifact/org.jetbrains.kotlin.android/org.jetbrains.kotlin.android.gradle.plugin
id 'org.jetbrains.kotlin.android' version '2.0.21' apply false
id 'org.jetbrains.kotlin.kapt' version '2.0.21' apply false
}
ext {
versions = [
compileSdkVersion : 35,
buildToolsVersion : "35.0.0",
minSdkVersion : 21,
targetSdkVersion : 35,
google_material : "1.12.0",
androidx_appcompat : "1.7.0",
androidx_constraintlayout: "2.2.0",
androidx_core : "1.15.0",
androidx_navigation : "2.8.3",
junit : "4.13.2",
androidx_junit : "1.2.1",
espresso : "3.6.1",
junit_jupiter : "5.9.0",
]
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}