io.github.dryrum.bump-version-code
Owner:
Carmelo Iriti
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.7 (latest)
Created 29 October 2023.
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.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.dryrum:bump-version-code:0.6.7")
}
}
apply(plugin = "io.github.dryrum.bump-version-code")
Using the plugins DSL:
plugins {
id "io.github.dryrum.bump-version-code" version "0.6.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.dryrum:bump-version-code:0.6.7"
}
}
apply plugin: "io.github.dryrum.bump-version-code"