com.squareup.anvil
Owner: Ralf Wondratschek
A Kotlin compiler plugin to make dependency injection with Dagger 2 easier by automatically merging Dagger modules and component interfaces.
https://github.com/square/anvil
Sources: https://github.com/square/anvil
Version 2.0.1
2.0.1
Created 28 August 2020.
A Kotlin compiler plugin to make dependency injection with Dagger 2 easier by automatically merging Dagger modules and component interfaces.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.squareup.anvil") version "2.0.1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.squareup.anvil:gradle-plugin:2.0.1") } } apply(plugin = "com.squareup.anvil")
- Applying plugins to all subprojects .