graphfity icon indicating copy to clipboard operation
graphfity copied to clipboard

Graphfity is a Gradle Plugin which creates a dependency node diagram graph about your internal modules dependencies, specially useful if you are developing a multi-module application

Results 2 graphfity issues
Sort by recently updated
recently updated
newest added

1. Add ability to structure vertically (or horizontally) by layers/levels. E.g. we may want to show first :app, then below all :feature, then below all :domain, then all :data, and...

Gradle 8.7 Android Studio Jellyfish Windows 11 * Root build.gradle: ``` import com.github.ivancarras.graphfity.plugin.main.GraphfityPluginExtension buildscript { repositories { gradlePluginPortal() mavenCentral() google() } dependencies { } } plugins { id("com.github.ivancarras.graphfity") version "1.1.0"...