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.7.0 (latest)
0.7.0
Created 09 July 2023.
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
Using the plugins DSL:
plugins {
id("xyz.mishkun.lobzik") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.mishkun.lobzik:lobzik:0.7.0")
}
}
apply(plugin = "xyz.mishkun.lobzik")
Using the plugins DSL:
plugins {
id "xyz.mishkun.lobzik" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.mishkun.lobzik:lobzik:0.7.0"
}
}
apply plugin: "xyz.mishkun.lobzik"