com.betomorrow.appcenter-plugin
Owner: Gauthier
Plugin to upload apk to AppCenter
https://github.com/oliviergauthier/gradle-appcenter-plugin
Sources: https://github.com/oliviergauthier/gradle-appcenter-plugin
Version 1.2.3 (latest)
1.2.3
Created 27 April 2021.
Plugin to upload apk to AppCenter
Using the plugins DSL:
plugins {
id("com.betomorrow.appcenter-plugin") version "1.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.betomorrow.gradle:com.betomorrow.appcenter-plugin:1.4")
}
}
apply(plugin = "com.betomorrow.appcenter-plugin")
Using the plugins DSL:
plugins {
id "com.betomorrow.appcenter-plugin" version "1.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.betomorrow.gradle:com.betomorrow.appcenter-plugin:1.4"
}
}
apply plugin: "com.betomorrow.appcenter-plugin"