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.10 (latest)

Created 12 December 2024.

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

Add this plugin to your build using the plugins DSL:

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

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("io.github.xpenatan.multi-module-aar:io.github.xpenatan.multi-module-aar.gradle.plugin:0.10")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.xpenatan.multi-module-aar")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.xpenatan.multi-module-aar:io.github.xpenatan.multi-module-aar.gradle.plugin:0.10")
      }
    }
    
    apply(plugin = "io.github.xpenatan.multi-module-aar")
  • Applying plugins to all subprojects .