Search Gradle plugins

Version 1.1.13 (latest)

Created 09 August 2021.

Gradle plugin that generates version name, code and launcher icons labeles for android application

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.handh.versionmaker") version "1.1.13"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("ru.handh.versionmaker:ru.handh.versionmaker.gradle.plugin:1.1.13")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ru.handh.versionmaker")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.handh.versionmaker:ru.handh.versionmaker.gradle.plugin:1.1.13")
      }
    }
    
    apply(plugin = "ru.handh.versionmaker")
  • Applying plugins to all subprojects .