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.4 (latest)

Created 19 June 2020.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.App-Badge:plugin:1.0.4")
  }
}

apply(plugin = "ru.cleverpumpkin.badge")

Using the plugins DSL:

plugins {
  id "ru.cleverpumpkin.badge" version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.App-Badge:plugin:1.0.4"
  }
}

apply plugin: "ru.cleverpumpkin.badge"

Learn how to apply plugins to subprojects