원클릭으로
android-detekt-expert
Use when performing logic-based static analysis, detecting code smells, or configuring Detekt for Android.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when performing logic-based static analysis, detecting code smells, or configuring Detekt for Android.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Handling Bluetooth Low Energy, flow wrappers, and Android 12+ permissions.
Seamless integration of CameraX with Google ML Kit for vision tasks.
Deep-dive skills for banking and healthcare apps.
Use when integrating Google Gemini Nano via AICore for on-device ML.
Automated UIAutomator tests and Hardware mocking setup.
Expanding KMP shared UI to cover Compose Multiplatform edge-cases.
| name | android-detekt-expert |
| description | Use when performing logic-based static analysis, detecting code smells, or configuring Detekt for Android. |
| category | quality |
| risk | low |
| source | community |
| date_added | 2026-03-31 |
| metadata | {"triggers":["@detekt","code-smell","static-analysis","complexity-check","debt-management"]} |
Advanced strategies for detecting hidden logic errors, structural flaws, and code debt in Kotlin Android applications.
viewModelScope.launch outside of ViewModels".Interface (if that's the team policy).Unit explicitly.!! operator.java.util.Date in favor of java.time or kotlinx-datetime)../gradlew detekt
./gradlew detekt --auto-correct
detekt.yml)Use a custom configuration file to override default thresholds:
complexity:
TooManyFunctions:
active: true
thresholdInFiles: 11
thresholdInClasses: 11
thresholdInInterfaces: 11
thresholdInObjects: 11
LongMethod:
active: true
threshold: 20
Rule subclass to enforce project-specific requirements.detekt-baseline.xml for large existing projects to prioritize fixing new issues.