Search Gradle plugins

com.dmlukas.iconoverlay

Owner: Dzmitry

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://github.com/dlukashanets/IconOverlayPlugin

Sources: https://github.com/dlukashanets/IconOverlayPlugin.git

Version 1.0 (latest)

Created 27 June 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("com.dmlukas.iconoverlay") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.IconOverlayPlugin:plugin:1.0")
  }
}

apply(plugin = "com.dmlukas.iconoverlay")

Using the plugins DSL:

plugins {
  id "com.dmlukas.iconoverlay" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.IconOverlayPlugin:plugin:1.0"
  }
}

apply plugin: "com.dmlukas.iconoverlay"

Learn how to apply plugins to subprojects