com.moonlitdoor.play-publisher
Owner: R. Brian Amesbury
A Gradle plugin that publishes Android apps to the Google Play Store.
https://github.com/moonlitdoor/mld-play-publisher
Sources: https://github.com/moonlitdoor/mld-play-publisher
Version 0.0.2 (latest)
0.0.2
Created 03 October 2018.
A Gradle plugin that publishes Android apps to the Google Play Store.
Using the plugins DSL:
plugins {
id("com.moonlitdoor.play-publisher") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.moonlitdoor.play-publisher:play-publisher:0.0.2")
}
}
apply(plugin = "com.moonlitdoor.play-publisher")
Using the plugins DSL:
plugins {
id "com.moonlitdoor.play-publisher" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.moonlitdoor.play-publisher:play-publisher:0.0.2"
}
}
apply plugin: "com.moonlitdoor.play-publisher"