diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 22f8a23ba6..bdc901247e 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -110,6 +110,27 @@ android { } } +// Knit +apply { + plugin("kotlinx-knit") +} + +knit { + files = fileTree(project.rootDir) { + include( + "**/*.md", + "**/*.kt", + "*/*.kts", + ) + exclude( + "**/build/**", + "*/.gradle/**", + "*/towncrier/template.md", + "**/CHANGES.md", + ) + } +} + dependencies { implementation(project(":libraries:designsystem")) implementation(project(":libraries:matrix"))