com.mounacheikhna.play-publish
Owner:
Mouna Cheikhna
Publish google play apks, metadata and screenshots to the play store
Version 0.3 (latest)
Created 16 March 2016.
Publish google play apks, metadata and screenshots to the play store
Using the plugins DSL:
plugins {
id("com.mounacheikhna.play-publish") version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.mounacheikhna:play-publish-plugin:0.3")
}
}
apply(plugin = "com.mounacheikhna.play-publish")
Using the plugins DSL:
plugins {
id "com.mounacheikhna.play-publish" version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.mounacheikhna:play-publish-plugin:0.3"
}
}
apply plugin: "com.mounacheikhna.play-publish"