Search Gradle plugins

Version 1.0.4 (latest)

1.0.4

Created 21 September 2020.

Plugin for publishing Android (AAR) libraries using Maven Publish plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.technoir42.aar-publish") version "1.0.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.technoir42:aar-publish-plugin:1.0.4")
      }
    }
    
    apply(plugin = "com.github.technoir42.aar-publish")
  • Applying plugins to all subprojects .