Search Gradle plugins

dev.quiro.sheath

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)

0.6.3

Created 16 April 2021.

A Kotlin compiler plugin to avoid adding kapt to most modules in a dagger-android project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.quiro.sheath") version "0.6.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.quiro.sheath:gradle-plugin:0.6.3")
      }
    }
    
    apply(plugin = "dev.quiro.sheath")
  • Applying plugins to all subprojects .