-
-
Notifications
You must be signed in to change notification settings - Fork 293
/
build.gradle.kts
executable file
·44 lines (40 loc) · 1.33 KB
/
build.gradle.kts
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
plugins {
alias(libs.plugins.hilt) apply (false)
alias(libs.plugins.kotlin.ksp) apply (false)
alias(libs.plugins.compose.compiler) apply false
}
buildscript {
val isFullBuild by extra {
gradle.startParameter.taskNames.none { task -> task.contains("foss", ignoreCase = true) }
}
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
dependencies {
classpath(libs.gradle)
classpath(kotlin("gradle-plugin", libs.versions.kotlin.get()))
if (isFullBuild) {
classpath(libs.google.services)
classpath(libs.firebase.crashlytics.plugin)
classpath(libs.firebase.perf.plugin)
}
}
}
tasks.register<Delete>("Clean") {
delete(rootProject.layout.buildDirectory)
}
subprojects {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions {
if (project.findProperty("enableComposeCompilerReports") == "true") {
arrayOf("reports", "metrics").forEach {
freeCompilerArgs = freeCompilerArgs + listOf(
"-P", "plugin:androidx.compose.compiler.plugins.kotlin:${it}Destination=${project.buildDir.absolutePath}/compose_metrics"
)
}
}
}
}
}