Search Gradle plugins

io.github.andreabrighi.android-git-sensitive-semantic-versioning-gradle-plugin

A Gradle plugin that forces semantic versioning in an Android project (version name and version code) and relies on git to detect the project state, based on Git-Sensitive Semantic Versioning Plugin by Danilo Pianini.

https://github.com/AndreaBrighi/Gradle-Git-Sensitive-Semantic-Versioning-Plugin-for-Android

Sources: https://github.com/AndreaBrighi/Gradle-Git-Sensitive-Semantic-Versioning-Plugin-for-Android.git

Version 3.0.5

3.0.5

Created 11 May 2024.

A Gradle plugin that forces semantic versioning in an Android project (version name and version code) and relies on git to detect the project state, based on Git-Sensitive Semantic Versioning Plugin by Danilo Pianini.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.andreabrighi.android-git-sensitive-semantic-versioning-gradle-plugin") version "3.0.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.andreabrighi:android-git-sensitive-semantic-versioning-gradle-plugin:3.0.5")
      }
    }
    
    apply(plugin = "io.github.andreabrighi.android-git-sensitive-semantic-versioning-gradle-plugin")
  • Applying plugins to all subprojects .