Search Gradle plugins

com.wopata.gradle.AndroidBuildNumberPlugin

Adds possibility to add build number to a provided version name in the form of "v1.0(buildNumber)" and build version code

https://github.com/wopata/AndroidBuildNumberPlugin/

Sources: https://github.com/wopata/AndroidBuildNumberPlugin/

Version 1.0.0 (latest)

1.0.0

Created 09 May 2018.

Adds possibility to add build number to a provided version name in the form of "v1.0(buildNumber)" and build version code

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.wopata.gradle.AndroidBuildNumberPlugin") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.wopata.gradle:android-buildnumber-plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.wopata.gradle.AndroidBuildNumberPlugin")
  • Applying plugins to all subprojects .