Search Gradle plugins

io.github.xpenatan.multi-module-aar

Owner: Natan

A plugin that helps reducing build times by switching between android project modules to AAR libs

https://github.com/xpenatan/multi-module-aar

Sources: https://github.com/xpenatan/AndroidMultiModuleAAR.git

Version 0.8 (latest)

Created 14 November 2023.

A plugin that help reducing build times by switching between android project modules and AAR libs

Using the plugins DSL:

plugins {
  id("io.github.xpenatan.multi-module-aar") version "0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.xpenatan:multi-module-aar:0.8")
  }
}

apply(plugin = "io.github.xpenatan.multi-module-aar")

Using the plugins DSL:

plugins {
  id "io.github.xpenatan.multi-module-aar" version "0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.xpenatan:multi-module-aar:0.8"
  }
}

apply plugin: "io.github.xpenatan.multi-module-aar"

Learn how to apply plugins to subprojects