-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (45 loc) · 1.04 KB
/
build.gradle
File metadata and controls
57 lines (45 loc) · 1.04 KB
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
55
56
57
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id 'com.android.library' apply false
id 'org.jetbrains.kotlin.android' apply false
id "com.autonomousapps.dependency-analysis"
}
allprojects {
tasks.withType(KotlinCompile).all {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_21
}
}
}
subprojects {
repositories {
mavenCentral()
}
configurations {
ktlint
}
apply from: "$project.rootDir/ktlint.gradle"
dependencies {
ktlint "com.pinterest:ktlint:0.50.0"
}
}
ext {
minSdkVersion = 21
compileSdkVersion = 34
targetSdkVersion = 34
}
ext {
// main
androidxAnnotationVersion = "1.1.0"
androidxAppcompatVersion = '1.2.0'
googleMaterialVersion = '1.3.0'
kotlinxCoroutinesVersion = '1.6.4'
sentryBomVersion = '8.18.0'
squareupOkhttpVersion = '4.9.0'
// test
assertjVersion = '3.19.0'
junitVersion = '4.13.2'
mockitoKotlinVersion = '6.0.0'
// other
wordpressLintVersion = '2.0.0'
}