Search Gradle plugins

Version 1.2.3 (latest)

Created 27 April 2021.

Plugin to upload apk to AppCenter

Using the plugins DSL:

plugins {
  id("com.betomorrow.appcenter-plugin") version "1.2.3"
}

Using legacy plugin application:

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

apply(plugin = "com.betomorrow.appcenter-plugin")

Using the plugins DSL:

plugins {
  id "com.betomorrow.appcenter-plugin" version "1.2.3"
}

Using legacy plugin application:

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

apply plugin: "com.betomorrow.appcenter-plugin"

Learn how to apply plugins to subprojects