Search Gradle plugins

Version 0.1.0 (latest)

Created 29 January 2024.

Allow to define Android Gradle plugin configuration common to all modules

Using the plugins DSL:

plugins {
  id("net.cacheux.android-global") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.cacheux.gradle:android-global-plugin:0.1.0")
  }
}

apply(plugin = "net.cacheux.android-global")

Using the plugins DSL:

plugins {
  id "net.cacheux.android-global" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.cacheux.gradle:android-global-plugin:0.1.0"
  }
}

apply plugin: "net.cacheux.android-global"

Learn how to apply plugins to subprojects