io.github.angrycitizen.appcenter
Owner: ISS
Plugin to upload apk/aab to AppCenter
https://github.com/angrycitizen/appcenter-gradle-plugin
Sources: https://github.com/angrycitizen/appcenter-gradle-plugin
Version 1.1.0 (latest)
1.1.0
Created 01 September 2022.
Plugin to upload apk/aab to AppCenter
Using the plugins DSL:
plugins {
id("io.github.angrycitizen.appcenter") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.angrycitizen:appcenter-plugin:1.1.0")
}
}
apply(plugin = "io.github.angrycitizen.appcenter")
Using the plugins DSL:
plugins {
id "io.github.angrycitizen.appcenter" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.angrycitizen:appcenter-plugin:1.1.0"
}
}
apply plugin: "io.github.angrycitizen.appcenter"