Search Gradle plugins

Version 1.1.1 (latest)

Created 19 February 2018.

Plugin to publish android app from Android studio

Using the plugins DSL:

plugins {
  id("me.tuple.easyplay") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.me.tuple.easyplay:easygoogleplay:1.1.1")
  }
}

apply(plugin = "me.tuple.easyplay")

Using the plugins DSL:

plugins {
  id "me.tuple.easyplay" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.me.tuple.easyplay:easygoogleplay:1.1.1"
  }
}

apply plugin: "me.tuple.easyplay"

Learn how to apply plugins to subprojects