Search Gradle plugins

nl.neotech.plugin.appcenter

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

https://github.com/NeoTech-Software/android-appcenter-gradle-plugin

Sources: https://github.com/NeoTech-Software/android-appcenter-gradle-plugin

Version 1.0.0-beta.4 (latest)

Created 23 June 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("nl.neotech.plugin.appcenter:nl.neotech.plugin.appcenter.gradle.plugin:1.0.0-beta.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("nl.neotech.plugin.appcenter")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("nl.neotech.plugin.appcenter:nl.neotech.plugin.appcenter.gradle.plugin:1.0.0-beta.4")
      }
    }
    
    apply(plugin = "nl.neotech.plugin.appcenter")
  • Applying plugins to all subprojects .