ru.handh.versionmaker
Owner:
Heads and Hands
Generates version name, versionCode and launcher icon labels
https://github.com/Heads-and-Hands/version-maker-android
Version 1.0.0
Created 12 May 2017.
Generates version name, versionCode and launcher icon labels
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.handh.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.handh.versionmaker:ru.handh.versionmaker.gradle.plugin:1.0.0") }
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.0.0") } } apply(plugin = "ru.handh.versionmaker")
- Applying plugins to all subprojects .