dev.quiro.sheath
Owner:
Lorenzo Quiroli
A Kotlin compiler plugin to avoid adding kapt to most modules in a dagger-android project.
https://github.com/quiro91/sheath
Sources: https://github.com/quiro91/sheath
Version 0.6.3 (latest)
Created 16 April 2021.
A Kotlin compiler plugin to avoid adding kapt to most modules in a dagger-android project.
Using the plugins DSL:
plugins {
id("dev.quiro.sheath") version "0.6.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.quiro.sheath:gradle-plugin:0.6.3")
}
}
apply(plugin = "dev.quiro.sheath")
Using the plugins DSL:
plugins {
id "dev.quiro.sheath" version "0.6.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.quiro.sheath:gradle-plugin:0.6.3"
}
}
apply plugin: "dev.quiro.sheath"