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.3.2
Created 16 June 2021.
                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.3.2"
}
              See also:
- 
                
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.squareup.anvil:com.squareup.anvil.gradle.plugin:2.3.2") }It can then be applied in the precompiled script plugin:plugins { id("com.squareup.anvil") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.squareup.anvil:com.squareup.anvil.gradle.plugin:2.3.2") } } apply(plugin = "com.squareup.anvil") - Applying plugins to all subprojects .