Search Gradle plugins

com.zhoujian.fat-aar

The fat-aar works with the gradle plugin's version of the development is 3.0.1 and later.

https://github.com/kezong/fat-aar-android

Sources: https://github.com/kezong/fat-aar-android

Version 1.1.11.7-SNAPSHOT

Created 18 July 2019.

The fat-aar works with the gradle plugin's version of the development is 3.0.1 and later.

Using the plugins DSL:

plugins {
  id("com.zhoujian.fat-aar") version "1.1.11.7-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.zhoujian:fat-aar:1.1.11.7-SNAPSHOT")
  }
}

apply(plugin = "com.zhoujian.fat-aar")

Using the plugins DSL:

plugins {
  id "com.zhoujian.fat-aar" version "1.1.11.7-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.zhoujian:fat-aar:1.1.11.7-SNAPSHOT"
  }
}

apply plugin: "com.zhoujian.fat-aar"

Learn how to apply plugins to subprojects