-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
27 lines (25 loc) · 862 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
27 lines (25 loc) · 862 Bytes
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
plugins {
alias(libs.plugins.stream.project)
alias(libs.plugins.stream.android.application) apply false
alias(libs.plugins.stream.android.library) apply false
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.arturbosch.detekt) apply true
}
streamProject {
repositoryName.set("stream-chat-android-ai")
coverage {
includedModules.set(setOf("stream-chat-android-ai-compose"))
}
publishing {
description.set("Official AI components for Stream Android Chat SDK")
}
}
detekt {
autoCorrect = true
toolVersion = libs.versions.detekt.get()
config.setFrom(file("config/detekt/detekt.yml"))
buildUponDefaultConfig = true
}