Search Gradle plugins

com.buddybuild.androidinterceptor

Plugin used to intercept gradle builds and perform post processing.

Sources: https://github.com/BuddyBuild/BBGradlePlugins.git

Version 0.0.39 (latest)

Created 08 January 2016.

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.39"
}

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.39")
    }
    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.39")
      }
    }
    
    apply(plugin = "com.buddybuild.androidinterceptor")
  • Applying plugins to all subprojects .