com.acterics.apk-dependency-graph-generator
Owner: Oleg Lipskiy
Gradle plugin for visualization your apk dependency graph
https://github.com/acterics/apk-dependency-graph-gradle-plugin
Sources: https://github.com/acterics/apk-dependency-graph-gradle-plugin
Version 0.12.0 (latest)
Created 25 March 2019.
Gradle plugin for visualization your apk dependency graph
Add this plugin to your build using the plugins DSL:
plugins {
id("com.acterics.apk-dependency-graph-generator") version "0.12.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("com.acterics.apk-dependency-graph-generator:com.acterics.apk-dependency-graph-generator.gradle.plugin:0.12.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.acterics.apk-dependency-graph-generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.acterics.apk-dependency-graph-generator:com.acterics.apk-dependency-graph-generator.gradle.plugin:0.12.0") } } apply(plugin = "com.acterics.apk-dependency-graph-generator")
- Applying plugins to all subprojects .