ch.hippmann.androidpublisher
Owner: Cedric
Gradle plugin for publishing apps to the Google Play Store
https://github.com/chippmann/androidpublisher
Sources: https://github.com/chippmann/androidpublisher.git
Version 0.3.2
0.3.2
Created 22 December 2023.
Gradle plugin for publishing apps to the Google Play Store
Using the plugins DSL:
plugins {
id("ch.hippmann.androidpublisher") version "0.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.hippmann:androidpublisher:0.3.2")
}
}
apply(plugin = "ch.hippmann.androidpublisher")
Using the plugins DSL:
plugins {
id "ch.hippmann.androidpublisher" version "0.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.hippmann:androidpublisher:0.3.2"
}
}
apply plugin: "ch.hippmann.androidpublisher"