Search Gradle plugins

Version 1.5 (latest)

Created 12 January 2021.

Support remote publish aar when building plugins AARs

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ljhgithub:publish-flutter-aar:1.0.2")
  }
}

apply(plugin = "com.github.ljhgithub.publish-flutter-aar")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ljhgithub:publish-flutter-aar:1.0.2"
  }
}

apply plugin: "com.github.ljhgithub.publish-flutter-aar"

Learn how to apply plugins to subprojects