Search Gradle plugins

io.github.dryrum.bump-version-code

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

https://github.com/dryrum/CDelivery

Sources: https://github.com/dryrum/CDelivery

Version 0.6.1

Created 20 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.dryrum.bump-version-code") version "0.6.1"
}

Using legacy plugin application:

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

apply(plugin = "io.github.dryrum.bump-version-code")

Using the plugins DSL:

plugins {
  id "io.github.dryrum.bump-version-code" version "0.6.1"
}

Using legacy plugin application:

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

apply plugin: "io.github.dryrum.bump-version-code"

Learn how to apply plugins to subprojects