io.github.underwindfall.zeplin.gradle
Owner: Qifan Yang
A plugin used to download assets from zeplin and convert it to useful assets (vector-drawables) for android
https://github.com/underwindfall/zeplin-asset-download-gradle
Sources: https://github.com/underwindfall/zeplin-asset-download-gradle.git
Version 0.0.1 (latest)
0.0.1
Created 04 May 2022.
A plugin used to download assets from zeplin and convert it to useful assets (vector-drawables) for android
Using the plugins DSL:
plugins {
id("io.github.underwindfall.zeplin.gradle") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.underwindfall:plugin:0.0.1")
}
}
apply(plugin = "io.github.underwindfall.zeplin.gradle")
Using the plugins DSL:
plugins {
id "io.github.underwindfall.zeplin.gradle" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.underwindfall:plugin:0.0.1"
}
}
apply plugin: "io.github.underwindfall.zeplin.gradle"