Search Gradle plugins

Plug-and-play Android release automation: build → rename → upload to Google Drive or OneDrive → email QA via browser. Zero credentials to manage. OAuth one-time sign-in. Free.

https://github.com/Shubhamgarg1072/ReleaseFlowPlugin

Sources: https://github.com/Shubhamgarg1072/ReleaseFlowPlugin.git

Version 1.4.2

Created 21 May 2026.

Plug-and-play Android release automation: build → rename → upload to Google Drive or OneDrive → email QA via browser. Zero credentials to manage. OAuth one-time sign-in. Free.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.Shubhamgarg1072.releaseflow") version "1.4.2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.Shubhamgarg1072.releaseflow:io.github.Shubhamgarg1072.releaseflow.gradle.plugin:1.4.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.Shubhamgarg1072.releaseflow")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.Shubhamgarg1072.releaseflow:io.github.Shubhamgarg1072.releaseflow.gradle.plugin:1.4.2")
      }
    }
    
    apply(plugin = "io.github.Shubhamgarg1072.releaseflow")
  • Applying plugins to all subprojects .