Search Gradle plugins

Version 2.0 (latest)

2.0

Created 28 July 2021.

Auto App Version Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.kangxiaoguang.auto-app-version") version "2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.kangxiaoguang.gradle.tools:auto-app-version:2.0")
      }
    }
    
    apply(plugin = "com.kangxiaoguang.auto-app-version")
  • Applying plugins to all subprojects .