-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (32 loc) · 1.09 KB
/
build.gradle.kts
File metadata and controls
36 lines (32 loc) · 1.09 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
buildscript {
dependencies {
classpath(com.yapp.bol.KtLint.KTLINT)
classpath(com.yapp.bol.DaggerHilt.DAGGER_HILT_PLUGIN)
classpath(com.yapp.bol.Kotlin.SDK)
classpath(com.yapp.bol.Android.BUILD_GRADLE)
classpath(com.yapp.bol.Firebase.GMS_CLASSPATH)
classpath(com.yapp.bol.Licenses.OSS_LICENSES_CLASSPATH)
classpath(com.yapp.bol.Firebase.CRASHLYTICES_GRADEL)
}
}
plugins {
id("org.jlleitschuh.gradle.ktlint") version "9.1.0"
id("com.android.application") version "7.3.1" apply false
id("org.jetbrains.kotlin.android") version "1.7.20" apply false
id("com.android.library") version "7.3.1" apply false
}
allprojects {
apply {
plugin("maven-publish")
plugin("org.jlleitschuh.gradle.ktlint")
}
ktlint {
filter {
exclude { projectDir.toURI().relativize(it.file.toURI()).path.contains("/androidTest/") }
exclude { projectDir.toURI().relativize(it.file.toURI()).path.contains("/test/") }
}
}
tasks.withType<JavaCompile> {
options.isIncremental = true
}
}