com.gaelmarhic.quadrant
Owner: Gaël Marhic
A Gradle plugin for Android that makes navigation easy in multi-module projects.
https://github.com/gaelmarhic/Quadrant
Sources: https://github.com/gaelmarhic/Quadrant
Version 1.9.1 (latest)
1.9.1
Created 03 February 2024.
A Gradle plugin for Android that makes navigation easy in multi-module projects.
Using the plugins DSL:
plugins {
id("com.gaelmarhic.quadrant") version "1.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.gaelmarhic:quadrant:1.9.1")
}
}
apply(plugin = "com.gaelmarhic.quadrant")
Using the plugins DSL:
plugins {
id "com.gaelmarhic.quadrant" version "1.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.gaelmarhic:quadrant:1.9.1"
}
}
apply plugin: "com.gaelmarhic.quadrant"