Search Gradle plugins

Adds a per-variant banner to the Android launcher icon, so a dev build is distinguishable from production on a device that has both installed.

https://github.com/bleeding182/android-icon-banner

Sources: https://github.com/bleeding182/android-icon-banner

Version 0.0.1 (latest)

Created 08 August 2026.

Adds a per-variant banner to the Android launcher icon, so a dev build is distinguishable from production on a device that has both installed.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.bleeding182.iconbanner") version "0.0.1"
}

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.bleeding182.iconbanner:io.github.bleeding182.iconbanner.gradle.plugin:0.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.bleeding182.iconbanner")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.bleeding182.iconbanner:io.github.bleeding182.iconbanner.gradle.plugin:0.0.1")
      }
    }
    
    apply(plugin = "io.github.bleeding182.iconbanner")
  • Applying plugins to all subprojects .