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.8-SNAPSHOT (latest)

Created 18 July 2019.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.zhoujian.fat-aar:com.zhoujian.fat-aar.gradle.plugin:1.1.11.8-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.zhoujian.fat-aar")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zhoujian.fat-aar:com.zhoujian.fat-aar.gradle.plugin:1.1.11.8-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.zhoujian.fat-aar")
  • Applying plugins to all subprojects .