net.cacheux.android-global
Owner: Leo Cacheux
Allow to define Android Gradle plugin configuration common to all modules
https://github.com/lcacheux/android-global-gradle-plugin
Sources: https://github.com/lcacheux/android-global-gradle-plugin.git
Version 0.1.0 (latest)
0.1.0
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"