com.rickbusarow.tangle
Owner: Rick Busarow
Create Android component bindings for Dagger with Anvil
https://github.com/RBusarow/Tangle
Sources: https://github.com/RBusarow/Tangle
Version 0.11.4
0.11.4
Created 04 August 2021.
Create Android component bindings for Dagger with Anvil
Using the plugins DSL:
plugins {
id("com.rickbusarow.tangle") version "0.11.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.rickbusarow.tangle:tangle-gradle-plugin:0.11.4")
}
}
apply(plugin = "com.rickbusarow.tangle")
Using the plugins DSL:
plugins {
id "com.rickbusarow.tangle" version "0.11.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.rickbusarow.tangle:tangle-gradle-plugin:0.11.4"
}
}
apply plugin: "com.rickbusarow.tangle"