Search Gradle plugins

ru.cleverpumpkin.badge

This is an Android gradle plugin that allows you to overlay text on top of an android application's icon

https://github.com/CleverPumpkin/App-Badge

Sources: https://github.com/CleverPumpkin/App-Badge

Version 1.0.3

1.0.3

Created 26 February 2020.

This is an Android gradle plugin that allows you to overlay text on top of an android application's icon

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.cleverpumpkin.badge") version "1.0.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.App-Badge:plugin:1.0.3")
      }
    }
    
    apply(plugin = "ru.cleverpumpkin.badge")
  • Applying plugins to all subprojects .