Search Gradle plugins

serg.chuprin.badge

This is an Android gradle plugin that allows you to overlay text on top of an android application's icon to easily convey information about the app to testers, such as version or flavor.

https://gitlab.com/creati8e/badge

Sources: https://gitlab.com/NobleworksSoftware/icon-overlay-plugin

Version 1.0.0 (latest)

Created 01 September 2018.

This is an Android gradle plugin that allows you to overlay text on top of an android application's icon to easily convey information about the app to testers, such as version or flavor.

Add this plugin to your build using the plugins DSL:

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