io.github.sgpublic.android-publish
Owner: Madray Haven
Use this plugin to distribute Android library with minimal code.
https://github.com/sgpublic/PublishingPlugins
Sources: https://github.com/sgpublic/buildSrc.git
Version 1.0.0-alpha01 (latest)
1.0.0-alpha01
Created 05 August 2023.
Use this plugin to distribute Android library with minimal code.
Using the plugins DSL:
plugins {
id("io.github.sgpublic.android-publish") version "1.0.0-alpha01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.sgpublic:PublishingPlugins:1.0.0-alpha01")
}
}
apply(plugin = "io.github.sgpublic.android-publish")
Using the plugins DSL:
plugins {
id "io.github.sgpublic.android-publish" version "1.0.0-alpha01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.sgpublic:PublishingPlugins:1.0.0-alpha01"
}
}
apply plugin: "io.github.sgpublic.android-publish"