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.

Using the plugins DSL:

plugins {
  id("serg.chuprin.badge") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.real-badge:plugin:1.0.0")
  }
}

apply(plugin = "serg.chuprin.badge")

Using the plugins DSL:

plugins {
  id "serg.chuprin.badge" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.real-badge:plugin:1.0.0"
  }
}

apply plugin: "serg.chuprin.badge"

Learn how to apply plugins to subprojects