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 1.0 (latest)

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"

Learn how to apply plugins to subprojects