love.nuoyan.android.component_bus_register
Owner:
wenjie
A modern implementation of the component bus for Android
https://github.com/wenjiegithub/ComponentBus
Version 0.1.0 (latest)
Created 13 January 2023.
A modern implementation of the component bus for Android
Using the plugins DSL:
plugins {
id("love.nuoyan.android.component_bus_register") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("love.nuoyan.android:component_bus_register:0.1.0")
}
}
apply(plugin = "love.nuoyan.android.component_bus_register")
Using the plugins DSL:
plugins {
id "love.nuoyan.android.component_bus_register" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "love.nuoyan.android:component_bus_register:0.1.0"
}
}
apply plugin: "love.nuoyan.android.component_bus_register"