Search Gradle plugins

Version 1.2.3 (latest)

Created 09 December 2020.

Plugin to upload apk to AppCenter

Using the plugins DSL:

plugins {
  id("com.ducnguyen.appcenter") version "1.2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.ducnguyen.gradle:appcenter-plugin:1.2.3")
  }
}

apply(plugin = "com.ducnguyen.appcenter")

Using the plugins DSL:

plugins {
  id "com.ducnguyen.appcenter" version "1.2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ducnguyen.gradle:appcenter-plugin:1.2.3"
  }
}

apply plugin: "com.ducnguyen.appcenter"

Learn how to apply plugins to subprojects