com.cyphercove.icondivvy
Owner: Cypher Cove
A Gradle plugin for resizing, organizing, and converting icon resources for Android projects.
https://github.com/CypherCove/IconDivvy
Sources: https://github.com/CypherCove/IconDivvy
Version 1.0 (latest)
1.0
Created 19 March 2022.
A Gradle plugin for resizing, organizing, and converting icon resources for Android projects.
Using the plugins DSL:
plugins {
id("com.cyphercove.icondivvy") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.cyphercove.icondivvy:icondivvy:1.0")
}
}
apply(plugin = "com.cyphercove.icondivvy")
Using the plugins DSL:
plugins {
id "com.cyphercove.icondivvy" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.cyphercove.icondivvy:icondivvy:1.0"
}
}
apply plugin: "com.cyphercove.icondivvy"