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.3 (latest)
0.3.3
Created 02 January 2024.
Gradle plugin for publishing apps to the Google Play Store
Using the plugins DSL:
plugins {
id("ch.hippmann.androidpublisher") version "0.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.hippmann:androidpublisher:0.3.3")
}
}
apply(plugin = "ch.hippmann.androidpublisher")
Using the plugins DSL:
plugins {
id "ch.hippmann.androidpublisher" version "0.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.hippmann:androidpublisher:0.3.3"
}
}
apply plugin: "ch.hippmann.androidpublisher"