Search Gradle plugins

Version 1.0.5

Created 27 October 2017.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ru.handh:versionmaker:1.0.5")
  }
}

apply(plugin = "ru.handh.versionmaker")

Using the plugins DSL:

plugins {
  id "ru.handh.versionmaker" version "1.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ru.handh:versionmaker:1.0.5"
  }
}

apply plugin: "ru.handh.versionmaker"

Learn how to apply plugins to subprojects