Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

Created 24 June 2016.

Gradle Plugin to publish android APKs and listings on Google Play

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jdroid.googleplay.publisher") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jdroidframework:jdroid-google-publisher-plugin:0.1.0")
      }
    }
    
    apply(plugin = "com.jdroid.googleplay.publisher")
  • Applying plugins to all subprojects .