Search Gradle plugins

Version 1.2.3

Created 18 July 2019.

this pulgin for android developer upload apk to PGY

Using the plugins DSL:

plugins {
  id("com.gracie.pgy") version "1.2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.gracie.pgy:PGYPlugin:1.2.3")
  }
}

apply(plugin = "com.gracie.pgy")

Using the plugins DSL:

plugins {
  id "com.gracie.pgy" version "1.2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gracie.pgy:PGYPlugin:1.2.3"
  }
}

apply plugin: "com.gracie.pgy"

Learn how to apply plugins to subprojects