Search Gradle plugins

co.veygo.gradle.fat-aar

The fat-aar plugin that can be used under android plugin 3.0.1 and gradle wrapper 4.4.

https://github.com/NicoToast/fat-aar

Sources: https://github.com/NicoToast/fat-aar

Version 1.1.1 (latest)

Created 28 August 2018.

The fat-aar plugin that can be used under android plugin 3.0.1 and gradle wrapper 4.4.

Using the plugins DSL:

plugins {
  id("co.veygo.gradle.fat-aar") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.co.veygo.gradle:fat-aar-plugin:1.1.1")
  }
}

apply(plugin = "co.veygo.gradle.fat-aar")

Using the plugins DSL:

plugins {
  id "co.veygo.gradle.fat-aar" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.co.veygo.gradle:fat-aar-plugin:1.1.1"
  }
}

apply plugin: "co.veygo.gradle.fat-aar"

Learn how to apply plugins to subprojects