Search Gradle plugins

Version 0.4 (latest)

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"

Learn how to apply plugins to subprojects