Search Gradle plugins

Version 0.0.2 (latest)

0.0.2

Created 03 October 2018.

A Gradle plugin that publishes Android apps to the Google Play Store.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.moonlitdoor.play-publisher") version "0.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.moonlitdoor.play-publisher:play-publisher:0.0.2")
      }
    }
    
    apply(plugin = "com.moonlitdoor.play-publisher")
  • Applying plugins to all subprojects .