Search Gradle plugins

Version 1.1.5 (latest)

Created 07 August 2018.

Launcher Icon Overlay Plugin

Using the plugins DSL:

plugins {
  id("ezy.plugin.launchericon") version "1.1.5"
}

Using legacy plugin application:

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

apply(plugin = "ezy.plugin.launchericon")

Using the plugins DSL:

plugins {
  id "ezy.plugin.launchericon" version "1.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ezy.plugin:launchericon:1.1.5"
  }
}

apply plugin: "ezy.plugin.launchericon"

Learn how to apply plugins to subprojects