搜索Gradle插件

版本 1.0.0-beta.4(最新版本)

1.0.0-beta.4

创建于2021年6月23日。

一个Gradle插件,允许您轻松地将您的Android应用的独立版本上传到AppCenter。

使用插件DSL

plugins {
  id("nl.neotech.plugin.appcenter") version "1.0.0-beta.4"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("nl.neotech.plugin:android-appcenter-plugin:1.0.0-beta.4")
  }
}

apply(plugin = "nl.neotech.plugin.appcenter")

使用插件DSL

plugins {
  id "nl.neotech.plugin.appcenter" version "1.0.0-beta.4"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "nl.neotech.plugin:android-appcenter-plugin:1.0.0-beta.4"
  }
}

apply plugin: "nl.neotech.plugin.appcenter"

了解如何将插件应用于子项目