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.13.0
0.13.0
Created 08 September 2021.
Create Android component bindings for Dagger with Anvil
Using the plugins DSL:
plugins {
id("com.rickbusarow.tangle") version "0.13.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.rickbusarow.tangle:tangle-gradle-plugin:0.13.0")
}
}
apply(plugin = "com.rickbusarow.tangle")
Using the plugins DSL:
plugins {
id "com.rickbusarow.tangle" version "0.13.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.rickbusarow.tangle:tangle-gradle-plugin:0.13.0"
}
}
apply plugin: "com.rickbusarow.tangle"