com.betomorrow.appcenter
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.1.11-SNAPSHOT
1.1.11-SNAPSHOT
Created 22 August 2019.
Plugin to upload apk to AppCenter
Using the plugins DSL:
plugins {
id("com.betomorrow.appcenter") version "1.1.11-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.betomorrow.gradle:appcenter-plugin:1.1.11-SNAPSHOT")
}
}
apply(plugin = "com.betomorrow.appcenter")
Using the plugins DSL:
plugins {
id "com.betomorrow.appcenter" version "1.1.11-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.betomorrow.gradle:appcenter-plugin:1.1.11-SNAPSHOT"
}
}
apply plugin: "com.betomorrow.appcenter"