搜索Gradle插件

版本 1.0(最新版)

1.0

创建于2022年3月19日。

Android项目图标资源调整大小、组织和转换的Gradle插件。

使用插件DSL

plugins {
  id("com.cyphercove.icondivvy") version "1.0"
}

使用旧插件应用

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

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

使用插件DSL

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

使用旧插件应用

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

apply plugin: "com.cyphercove.icondivvy"

学习如何将插件应用到子项目