-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (42 loc) · 890 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
buildscript
{
repositories
{
mavenLocal()
mavenCentral()
google()
}
dependencies
{
classpath "com.android.tools.build:gradle:8.6.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
}
}
plugins
{
id "org.jlleitschuh.gradle.ktlint" version "10.2.1"
id "io.gitlab.arturbosch.detekt" version "1.18.1"
}
allprojects
{
apply plugin: "org.jlleitschuh.gradle.ktlint"
apply plugin: "io.gitlab.arturbosch.detekt"
}
task clean(type: Delete)
{
delete(rootProject.layout.buildDirectory.get().asFile)
}
ext
{
JVM_TARGET = '17'
JAVA_VERSION = JavaVersion.VERSION_17
MIN_SDK_VERSION = 22
TARGET_SDK_VERSION = 35
COMPILE_SDK_VERSION = 35
BUILD_TOOLS_VERSION = '35.0.0'
}
allprojects {
configurations.all {
resolutionStrategy.force 'org.objenesis:objenesis:2.6'
}
}