Search Gradle plugins

ru.artzmb.versionmaker

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

https://github.com/artzmb/version-maker-android

Sources: https://github.com/artzmb/version-maker-android

Version 1.0.0 (latest)

Created 20 March 2018.

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.artzmb.versionmaker") version "1.0.0"
}

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.artzmb.versionmaker:ru.artzmb.versionmaker.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ru.artzmb.versionmaker")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.artzmb.versionmaker:ru.artzmb.versionmaker.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "ru.artzmb.versionmaker")
  • Applying plugins to all subprojects .