net.wooga.appcenter
Owner: Manne Endres
This plugin provides tasks for uploading a build to AppCenter
https://wooga.github.io/atlas-appcenter/
Sources: https://github.com/wooga/atlas-appcenter
Version 3.1.0
3.1.0
Created 21 June 2024.
This plugin provides tasks for uploading a build to AppCenter
Using the plugins DSL:
plugins {
id("net.wooga.appcenter") version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:appcenter:3.1.0")
}
}
apply(plugin = "net.wooga.appcenter")
Using the plugins DSL:
plugins {
id "net.wooga.appcenter" version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:appcenter:3.1.0"
}
}
apply plugin: "net.wooga.appcenter"