Skip to content

Instantly share code, notes, and snippets.

View VahidGarousi's full-sized avatar
😎

Vahid Garousi VahidGarousi

😎
View GitHub Profile
@VahidGarousi
VahidGarousi / AndroidLibraryConventionPlugin.kt
Created September 27, 2023 04:25
Detekt in Gradle Convention for Android
class AndroidLibraryConventionPlugin : Plugin<Project> {
override fun apply(target: Project) {
with(target) {
with(pluginManager) {
apply("com.android.library")
apply("org.jetbrains.kotlin.android")
apply("composenews.android.detekt") // here
apply("composenews.android.ktlint")
}