com.github.ljhgithub.publish-flutter-aar
Owner: ljhgithub
Support remote publish aar when building plugins AARs
Sources: https://github.com/ljhgithub/publish-flutter-aar
Version 1.5 (latest)
1.5
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"