Use the Jlleitschuh Ktlint Gradle plugin, enable Android-aware formatting, and make formatting/checking explicit Gradle tasks: ```kotlin plugins { id("com.android.application") kotlin("android") id("org.jlleitschuh.gradle.ktlint") version "12.1.2" } ktlint { android.set(true) outputToConsole.set(true) ignoreFailures.set(false) } // Android's preBuild task runs before compilation, so this formats each build. tasks.named("preBuild") { dependsOn("ktlintFormat") } // Keep the non-mutating quality...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill android-tooling --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Android Tooling?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-android-tooling-a09eaa27)More formats (shields.io, HTML) on the badges page.
Use the Jlleitschuh Ktlint Gradle plugin, enable Android-aware formatting, and make formatting/checking explicit Gradle tasks:
```kotlin
plugins {
id("com.android.application")
kotlin("android")
id("org.jlleitschuh.gradle.ktlint") version "12.1.2"
}
ktlint {
android.set(true)
outputToConsole.set(true)
ignoreFailures.set(false)
}
// Android's preBuild task runs before compilation, so this formats each build.
tasks.named("preBuild") {
dependsOn("ktlintFormat")
}
// Keep the non-mutating quality gate in the normal verification lifecycle.
tasks.named("check") {
dependsOn("ktlintCheck")
}
```
Use `./gradlew ktlintFormat` to format on demand and `./gradlew ktlintCheck` to verify formatting without changing files. A lightweight pre-commit hook can run `./gradlew ktlintFormat`; the pull-request pipeline should run `ktlintCheck` together with Detekt, Android Lint, and unit tests. Do not manually reformat source; let Ktlint apply the configured formatting, and enable IDE format-on-save for immediate feedback.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!