com.betomorrow.appcenter-plugin
所有者: Gauthier
插件用于上传apk到AppCenter
https://github.com/oliviergauthier/gradle-appcenter-plugin
源代码: https://github.com/oliviergauthier/gradle-appcenter-plugin
版本 1.2.3 (最新版)
1.2.3
创建于2021年4月27日。
插件用于上传apk到AppCenter
使用插件DSL
plugins {
id("com.betomorrow.appcenter-plugin") version "1.2.3"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.betomorrow.gradle:com.betomorrow.appcenter-plugin:1.4")
}
}
apply(plugin = "com.betomorrow.appcenter-plugin")
使用插件DSL
plugins {
id "com.betomorrow.appcenter-plugin" version "1.2.3"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.betomorrow.gradle:com.betomorrow.appcenter-plugin:1.4"
}
}
apply plugin: "com.betomorrow.appcenter-plugin"