xyz.mishkun.lobzik
Owner:
Mikhail Levchenko
Lobzik is a gradle plugin designed to help Android developers chop their monolithic codebases into smaller pieces. It gathers data about dependency graph and runs Louvain algorithm to split it into modules
https://github.com/Mishkun/lobzik
Sources: https://github.com/Mishkun/lobzik
Version 0.8.0 (latest)
Created 05 October 2024.
Lobzik is a gradle plugin designed to help Android developers chop their monolithic codebases into smaller pieces. It gathers data about dependency graph and runs Louvain algorithm to split it into modules
Add this plugin to your build using the plugins DSL:
plugins {
id("xyz.mishkun.lobzik") version "0.8.0"
}
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("xyz.mishkun.lobzik:xyz.mishkun.lobzik.gradle.plugin:0.8.0") }
It can then be applied in the precompiled script plugin:plugins { id("xyz.mishkun.lobzik") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.mishkun.lobzik:xyz.mishkun.lobzik.gradle.plugin:0.8.0") } } apply(plugin = "xyz.mishkun.lobzik")
- Applying plugins to all subprojects .