Search Gradle plugins

Version 1.5 (latest)

1.5

Created 12 January 2021.

Support remote publish aar when building plugins AARs

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.ljhgithub.publish-flutter-aar") version "1.5"
}

See also:

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