com.gitlab.edyjen.android-versioning
Owner: Pedro Miguel Parra Salazar
Gradle plugin to automatically generate Android versionName and versionCode using Git.
https://gitlab.com/edyjen/android-versioning
Sources: https://gitlab.com/edyjen/android-versioning.git
Version 0.1.4 (latest)
0.1.4
Created 08 September 2023.
Gradle plugin to automatically generate Android versionName and versionCode using Git.
Using the plugins DSL:
plugins {
id("com.gitlab.edyjen.android-versioning") version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gitlab.edyjen:android-versioning:0.1.4")
}
}
apply(plugin = "com.gitlab.edyjen.android-versioning")
Using the plugins DSL:
plugins {
id "com.gitlab.edyjen.android-versioning" version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gitlab.edyjen:android-versioning:0.1.4"
}
}
apply plugin: "com.gitlab.edyjen.android-versioning"