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)

1.1.1

Created 28 August 2018.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.co.veygo.gradle:fat-aar-plugin:1.1.1")
      }
    }
    
    apply(plugin = "co.veygo.gradle.fat-aar")
  • Applying plugins to all subprojects .