搜索 Gradle 插件

版本 0.6 (最新版)

0.6

创建于 2017 年 5 月 12 日。

此插件版本将在 JCenter 永久重定向到 Maven Central 后不再可用,因为它使用了只在 JCenter 上可找到的依赖。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 一个基于 PlayStore 上上次上传的 APK 来设置构建版本的 Android-Gradle 插件

使用 插件 DSL

plugins {
  id("com.github.gmazzo.play-autoincrement") version "0.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.gmazzo:play-autoincrement-plugin:0.6")
  }
}

apply(plugin = "com.github.gmazzo.play-autoincrement")

使用 插件 DSL

plugins {
  id "com.github.gmazzo.play-autoincrement" version "0.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.gmazzo:play-autoincrement-plugin:0.6"
  }
}

apply plugin: "com.github.gmazzo.play-autoincrement"

学习如何将插件应用于子项目