com.collabora.filetoresource.plugin
所有者: Ryan Pavlik
以某种方式处理文件以生成Android资源
https://github.com/rpavlik/file-to-resource-plugin
来源: https://github.com/rpavlik/file-to-resource-plugin
使用 插件DSL
plugins {
id("com.collabora.filetoresource.plugin") version "0.9.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.collabora.filetoresource.plugin:plugin:0.9.1")
}
}
apply(plugin = "com.collabora.filetoresource.plugin")
使用 插件DSL
plugins {
id "com.collabora.filetoresource.plugin" version "0.9.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.collabora.filetoresource.plugin:plugin:0.9.1"
}
}
apply plugin: "com.collabora.filetoresource.plugin"