Search Gradle plugins

com.github.sh3lan93.android-version-manager

A manager for manage changing/incrementing verion code and version name of an android application depending on build type

https://github.com/sh3lan93/version-manager-android

Sources: https://github.com/sh3lan93/version-manager-android.git

Version 1.1

1.1

Created 23 June 2021.

A manager for manage changing/incrementing verion code and version name of an android application depending on build type

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.sh3lan93.android-version-manager") version "1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.sh3lan93:android-versioning-manager:1.1")
      }
    }
    
    apply(plugin = "com.github.sh3lan93.android-version-manager")
  • Applying plugins to all subprojects .