Search Gradle plugins

io.github.bump-versioncode

This plugin will increment by one the current android version code locate in you gradle.properties

https://github.com/ciriti/CDelivery

Sources: https://github.com/ciriti/BumpVersionCodePlugin.git

Version 0.3.0

Created 16 January 2021.

This plugin increment the android version code property located into the gradle.properties file of an android app

Using the plugins DSL:

plugins {
  id("io.github.bump-versioncode") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.ciriti:bump-version-code:0.3.0")
  }
}

apply(plugin = "io.github.bump-versioncode")

Using the plugins DSL:

plugins {
  id "io.github.bump-versioncode" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.ciriti:bump-version-code:0.3.0"
  }
}

apply plugin: "io.github.bump-versioncode"

Learn how to apply plugins to subprojects