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