cn.moltres.component_bus.register
Owner: wenjie
A modern implementation of the component bus for Android!
https://github.com/wenjiegithub/ComponentBus
Sources: https://github.com/wenjiegithub/ComponentBus
Version 0.3.0 (latest)
0.3.0
Created 12 September 2023.
A modern implementation of the component bus for Android!
Using the plugins DSL:
plugins {
id("cn.moltres.component_bus.register") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("cn.moltres.component_bus:component_bus_register:0.3.0")
}
}
apply(plugin = "cn.moltres.component_bus.register")
Using the plugins DSL:
plugins {
id "cn.moltres.component_bus.register" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "cn.moltres.component_bus:component_bus_register:0.3.0"
}
}
apply plugin: "cn.moltres.component_bus.register"