搜索 Gradle 插件

版本 1.0.4(最新版)

1.0.4

创建于 2019 年 5 月 12 日。

自动添加和更新 AndroidManifest 和 gradle.properties 中的 Android 语义版本

使用 插件 DSL

plugins {
  id("com.github.deckyfx.autoversion") version "1.0.4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.deckyfx:autoversion:1.0.4")
  }
}

apply(plugin = "com.github.deckyfx.autoversion")

使用 插件 DSL

plugins {
  id "com.github.deckyfx.autoversion" version "1.0.4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.deckyfx:autoversion:1.0.4"
  }
}

apply plugin: "com.github.deckyfx.autoversion"

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