nl.neotech.plugin.appcenter
Owner: Rolf Smit
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)
1.0.0-beta.4
Created 23 June 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.4"
}
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.4")
}
}
apply(plugin = "nl.neotech.plugin.appcenter")
Using the plugins DSL:
plugins {
id "nl.neotech.plugin.appcenter" version "1.0.0-beta.4"
}
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.4"
}
}
apply plugin: "nl.neotech.plugin.appcenter"