Owner:
Sungyong An
A Gradle plugin that detects duplicate resources, assets, classes, and native libraries across Android dependencies.
Version 0.0.4
Created 23 April 2026.
A Gradle plugin that detects duplicate resources, assets, classes, and native libraries across Android dependencies.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.fornewid.highlander") version "0.0.4"
}
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("io.github.fornewid.highlander:io.github.fornewid.highlander.gradle.plugin:0.0.4") }It can then be applied in the precompiled script plugin:plugins { id("io.github.fornewid.highlander") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.fornewid.highlander:io.github.fornewid.highlander.gradle.plugin:0.0.4") } } apply(plugin = "io.github.fornewid.highlander") - Applying plugins to all subprojects .