com.cpdroid.fat-aar
Owner:
cpdroid
A plugin to merge dependencies(aar/jar) into aar file
https://github.com/cpdroid/fat-aar
Sources: https://github.com/cpdroid/fat-aar.git
Version 1.0.1
Created 08 August 2019.
A plugin to merge dependencies(aar/jar) into aar file
Add this plugin to your build using the plugins DSL:
plugins {
id("com.cpdroid.fat-aar") version "1.0.1"
}
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.cpdroid.fat-aar:com.cpdroid.fat-aar.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.cpdroid.fat-aar") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.cpdroid.fat-aar:com.cpdroid.fat-aar.gradle.plugin:1.0.1") } } apply(plugin = "com.cpdroid.fat-aar")
- Applying plugins to all subprojects .