Owner:
buddybuild
Plugin used to intercept gradle builds and perform post processing.
Version 0.0.11
Created 01 December 2015.
Plugin used to intercept gradle builds and perform post processing.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.buddybuild.androidinterceptor") version "0.0.11"
}
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.buddybuild.androidinterceptor:com.buddybuild.androidinterceptor.gradle.plugin:0.0.11") }It can then be applied in the precompiled script plugin:plugins { id("com.buddybuild.androidinterceptor") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.buddybuild.androidinterceptor:com.buddybuild.androidinterceptor.gradle.plugin:0.0.11") } } apply(plugin = "com.buddybuild.androidinterceptor") - Applying plugins to all subprojects .