com.github.gmazzo.fontawesome
所有者: Guillermo Mazzola
Android-Gradle 插件的端口 https://github.com/FortAwesome/Font-Awesome.
https://github.com/gmazzo/gradle-fontawesome-plugin
源代码:https://github.com/gmazzo/gradle-fontawesome-plugin
版本 0.4(最新版)
0.4
创建于 2018 年 2 月 20 日。
Android-Gradle 插件的端口 https://github.com/FortAwesome/Font-Awesome.
使用 plugins DSL
plugins {
id("com.github.gmazzo.fontawesome") version "0.4"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.gmazzo:plugin:0.4")
}
}
apply(plugin = "com.github.gmazzo.fontawesome")
使用 plugins DSL
plugins {
id "com.github.gmazzo.fontawesome" version "0.4"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.gmazzo:plugin:0.4"
}
}
apply plugin: "com.github.gmazzo.fontawesome"