ezy.plugin.launchericon
Owner: reezy
Launcher Icon Overlay Plugin
Sources: http://github.com/czy1121/
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"