Search Gradle plugins

Version 1.0.0-beta.1

Created 16 April 2021.

A Gradle plugin that allows you to easily upload separate variants of your Android app to AppCenter.

Using the plugins DSL:

plugins {
  id("nl.neotech.plugin.appcenter") version "1.0.0-beta.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("nl.neotech.plugin:android-appcenter-plugin:1.0.0-beta.1")
  }
}

apply(plugin = "nl.neotech.plugin.appcenter")

Using the plugins DSL:

plugins {
  id "nl.neotech.plugin.appcenter" version "1.0.0-beta.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "nl.neotech.plugin:android-appcenter-plugin:1.0.0-beta.1"
  }
}

apply plugin: "nl.neotech.plugin.appcenter"

Learn how to apply plugins to subprojects