com.github.gmazzo.fontawesome
Owner: Guillermo Mazzola
An Android-Gradle plugin port of https://github.com/FortAwesome/Font-Awesome.
https://github.com/gmazzo/gradle-fontawesome-plugin
Sources: https://github.com/gmazzo/gradle-fontawesome-plugin
Version 0.4 (latest)
0.4
Created 20 February 2018.
An Android-Gradle plugin port of https://github.com/FortAwesome/Font-Awesome.
Using the plugins DSL:
plugins {
id("com.github.gmazzo.fontawesome") version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.gmazzo:plugin:0.4")
}
}
apply(plugin = "com.github.gmazzo.fontawesome")
Using the plugins DSL:
plugins {
id "com.github.gmazzo.fontawesome" version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.gmazzo:plugin:0.4"
}
}
apply plugin: "com.github.gmazzo.fontawesome"