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