Search Gradle plugins

com.cyphercove.icondivvy

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 0.6

Created 13 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 "0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.cyphercove.icondivvy:icondivvy:0.6")
  }
}

apply(plugin = "com.cyphercove.icondivvy")

Using the plugins DSL:

plugins {
  id "com.cyphercove.icondivvy" version "0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.cyphercove.icondivvy:icondivvy:0.6"
  }
}

apply plugin: "com.cyphercove.icondivvy"

Learn how to apply plugins to subprojects