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 0.7.0
0.7.0
Created 12 May 2020.
This plugin provides tasks for uploading a build to AppCenter
Using the plugins DSL:
plugins {
id("net.wooga.appcenter") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.wooga.gradle:atlas-appcenter:0.7.0")
}
}
apply(plugin = "net.wooga.appcenter")
Using the plugins DSL:
plugins {
id "net.wooga.appcenter" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.wooga.gradle:atlas-appcenter:0.7.0"
}
}
apply plugin: "net.wooga.appcenter"