Search Gradle plugins

Version 0.3.1

Created 11 January 2023.

Gradle plugin for publishing apps to the Google Play Store

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.hippmann:androidpublisher:0.3.1")
  }
}

apply(plugin = "ch.hippmann.androidpublisher")

Using the plugins DSL:

plugins {
  id "ch.hippmann.androidpublisher" version "0.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.hippmann:androidpublisher:0.3.1"
  }
}

apply plugin: "ch.hippmann.androidpublisher"

Learn how to apply plugins to subprojects