Search Gradle plugins

Version 0.2.0

0.2.0

Created 25 August 2021.

Gradle plugin for publishing apps to the Google Play Store

Add this plugin to your build using the plugins DSL:

plugins {
  id("ch.hippmann.androidpublisher") version "0.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ch.hippmann:androidpublisher-gradle-plugin:0.2.0")
      }
    }
    
    apply(plugin = "ch.hippmann.androidpublisher")
  • Applying plugins to all subprojects .