Owner:
fanmingyi
Improve the efficiency of compiling Android.Package module as AAR and cache it.
Version 1.0.49 (latest)
Created 11 January 2022.
Improve the efficiency of compiling Android.Package module as AAR and cache it.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.fanmingyi.modulearchive") version "1.0.49"
}
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("io.github.fanmingyi.modulearchive:io.github.fanmingyi.modulearchive.gradle.plugin:1.0.49") }It can then be applied in the precompiled script plugin:plugins { id("io.github.fanmingyi.modulearchive") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.fanmingyi.modulearchive:io.github.fanmingyi.modulearchive.gradle.plugin:1.0.49") } } apply(plugin = "io.github.fanmingyi.modulearchive") - Applying plugins to all subprojects .